试题分类排序

作者:admin 发布日期:2024年9月20日 17:00 浏览量:64

// 用于存储每个 topicId 的当前索引

        let topicIndexes = 0;

        // 对列表进行排序并添加索引

        const sortedExamList = res.data.map((item: any, index: any, array: any) => {

          if (index === 0 || array[index - 1].topicType != item.topicType{

            topicIndexes = 1; // 初始化或重置索引

          } else {

            topicIndexes += 1; // 否则索引加 1

          }

          return {

            ...item,

            [`topicIndex`]: topicIndexes

          };

        });

        console.log('排序后', sortedExamList)

上一篇:docker搭建rustdesk
下一篇:frp内网穿透