vue template 里使用可选链操作符( ?. )报错:Errors compiling template:invalid expression: Unexpected token ‘.‘ i
Posted 凯小默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue template 里使用可选链操作符( ?. )报错:Errors compiling template:invalid expression: Unexpected token ‘.‘ i相关的知识,希望对你有一定的参考价值。
问题
我使用的node 版本是 12.13.0
,vue 版本是 2.6.11
,在 vue template 里使用可选链操作符( ?.
)报错如下:
<template>
<div id="app">
<h1>可选链操作符</h1>
<div>testObj?.blog1?.name</div>
</div>
</template>
<script>
export default
name: "App",
data()
return
testObj:
,
mounted()
this.testObj =
blog:
name: "kaimo313"
,
;
</script>
在 script 里添加是不报错的
<template>
<div id="app">
<h1>可选链操作符</h1>
</div>
</template>
<script>
export default
name: "App",
data()
return
testObj:
blog:
name: "kaimo313"
,
created()
console.log("blog1--->", this.testObj?.blog1?.name)
console.log("name1--->", this.testObj?.blog?.name1)
console.log("kaimo313--->", this.testObj?.blog?.name)
;
</script>
解决
这个问题主要是 vue 2.6.11
template 不支持可选链操作符,在可以升级 vue 版本的情况下,我们可以升级到 2.7.0
版本,同时 node 版本升级到 14.0.0
。
npm i vue@2.7.0 vue-template-compiler@2.7.0
然后通过 nvm 工具切换版本到 14.0.0
,nvm 工具的使用可以参考我之前的博客:怎么使用 nvm 控制 nodejs 版本切换?
大家也可以测试其他的版本,我试了一下 14.0.0
以上的几种版本都是可以的,安装切换完版本,然后运行服务,即可
页面也可以正常展示了:我们加一行代码:
<template>
<div id="app">
<h1>kaimo test 可选链操作符</h1>
<div>testObj?.blog1?.name</div>
<h2>testObj?.blog?.name</h2>
</div>
</template>
<script>
export default
name: "App",
data()
return
testObj:
,
mounted()
this.testObj =
blog:
name: "kaimo313"
,
;
</script>
注意问题
一定要确定好 vue 版本的问题,可以去依赖里面看看版本,2.7.10
我也测试了一下,也是可行的
另外就是版本的问题了:node.js模块依赖及版本号
拓展:
https://github.com/npm/node-semver#versions
What’s the difference between tilde(~) and caret(^) in package.json?
以上是关于vue template 里使用可选链操作符( ?. )报错:Errors compiling template:invalid expression: Unexpected token ‘.‘ i的主要内容,如果未能解决你的问题,请参考以下文章