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

  • 标签的第一个字符不符合 HTML 或 Vue 的语法要求
json 复制代码
[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] 
json 复制代码
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标签的开始。

让我来修复这个问题:

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 的最佳实践,将逻辑从模板中移到组件方法中

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


相关推荐
我的写法有点潮17 分钟前
JS中对象是怎么运算的呢
前端·javascript·面试
悠哉摸鱼大王18 分钟前
NV12 转 RGB 完整指南
前端·javascript
一壶纱20 分钟前
UniApp + Pinia 数据持久化
前端·数据库·uni-app
双向3321 分钟前
【RAG+LLM实战指南】如何用检索增强生成破解AI幻觉难题?
前端
海云前端122 分钟前
前端人必懂的浏览器指纹:不止是技术,更是求职加分项
前端
青莲84323 分钟前
Java内存模型(JMM)与JVM内存区域完整详解
android·前端·面试
boooooooom24 分钟前
深入浅出 Vue3 defineModel:极简实现组件双向绑定
vue.js
parade岁月26 分钟前
把 Git 提交变成“可执行规范”:Commit 规范体系与 Husky/Commitlint/Commitizen/Lint-staged 全链路介绍
前端·代码规范
青莲84326 分钟前
Java内存回收机制(GC)完整详解
java·前端·面试
pas13627 分钟前
29-mini-vue element搭建更新
前端·javascript·vue.js