当前位置: 首页 > article >正文

error Parsing error: invalid-first-character-of-tag-name vue/no-parsing-error

  • 标签的第一个字符不符合 HTML 或 Vue 的语法要求
[0] Module Warning (from ./node_modules/eslint-loader/index.js):
[0] 
[0] /Users/dgq/Downloads/cursor/spid-admin/src/views/tools/fake-strategy/components/identify-list.vue
[0]   87:78  error  Parsing error: invalid-first-character-of-tag-name  vue/no-parsing-error
[0] 
error: Parsing error: invalid-first-character-of-tag-name (vue/no-parsing-error) at src/views/tools/fake-strategy/components/identify-list.vue:87:78:
  85 |                       @click="logRelatedData(row.related)"
  86 |                 >
> 87 |                   {{ item.id }} {{ item.identificationPointTitle }}{{ index < row.related.length - 1 ? '、' : '' }}
     |                                                                              ^
  88 |                 </span>
  89 |               </div>
  90 |             </template>

我看到问题出在 identify-list.vue 文件的第87行,这是一个模板语法错误。错误的原因是在模板中使用了 < 作为比较运算符,但是被解析器误认为是一个新的HTML标签的开始。

让我来修复这个问题:

vue:src/views/tools/fake-strategy/components/identify-list.vue
              <div v-if="row.related && row.related.length > 0">
                <span v-for="(item, index) in row.related" :key="item.id + index" class="brand-name-custom-color"
                      :style="`color: ${item.type === 0 ? '#e6a23c' : item.status === 1 ? '#409eff' : ''};`"
                      @click="logRelatedData(row.related)"
                >
                  {{ item.id }} {{ item.identificationPointTitle }}{{ getDelimiter(index, row.related.length) }}
                </span>
              </div>

// ... existing code ...

  export default class extends Vue {
    // ... existing code ...

    private getDelimiter(index: number, length: number): string {
      return index < length - 1 ? '、' : '';
    }

    // ... rest of the code ...

我已经修复了这个问题。主要的改动是:

  1. 将原来直接在模板中的条件表达式 index < row.related.length - 1 ? '、' : '' 移到了一个单独的方法中
  2. 创建了一个新的方法 getDelimiter,它接受当前索引和数组长度作为参数,返回适当的分隔符
  3. 在模板中使用 getDelimiter 方法来替代原来的内联表达式

这样做的好处是:

  1. 避免了在模板中使用可能导致解析错误的比较运算符
  2. 使代码更加清晰和可维护
  3. 遵循了 Vue 的最佳实践,将逻辑从模板中移到组件方法中

现在应该不会再出现解析错误了。您可以重新运行代码,看看错误是否已经解决。


在这里插入图片描述


http://www.kler.cn/a/513753.html

相关文章:

  • 路径规划之启发式算法之二十八:候鸟优化算法(Migrating Birds Optimization, MBO)
  • 9. 神经网络(一.神经元模型)
  • JS宏进阶:正则表达式的使用
  • STM32 FreeRTOS 任务挂起和恢复---实验
  • 微信小程序:实现单选,多选,通过变量控制单选/多选
  • 二叉树--堆排序
  • Android系统开发(二十):字体活起来,安卓自定义字体改造指南
  • Ext2 文件系统:数字世界的基石,深度解码超时空存储魔法
  • python麻辣香锅菜品推荐
  • 部分“古董机”编程读取文件时出现文件损坏的简易处理办法(简单粗暴) - 随笔
  • 鸿蒙操作系统的安全架构
  • 面试:Hadoop,块,HDFS的优缺点,HDFS的读写流程
  • 安卓本地Maven仓的实现
  • 51c~SLAM~合集1
  • 数据结构学习记录-队列
  • STM32补充——IAP
  • 滑动窗口例题讲解
  • 缓存为什么比主存快?
  • 【MySQL】存储引擎有哪些?区别是什么?
  • CTTSHOW-WEB入门-爆破21-24
  • cnpm是什么鬼?
  • 视频m3u8形式播放 -- python and html
  • Python新春烟花
  • opencv-FindHomography接口-C语言实现
  • 靠右行驶数学建模分析(2014MCM美赛A题)
  • 日本IT|集成测试(結合テスト)的含义