gpt4 book ai didi

javascript - 这个使用 Vue2 JS 的基本计算数据值有什么问题?

转载 作者:搜寻专家 更新时间:2023-10-30 22:22:44 25 4
gpt4 key购买 nike

我遵循了一个使用计算数据输出名字和姓氏的在线教程。我的代码是一样的,但是渲染出来的结果不一样。目前,它看到 $ 之后的内容只是一个字符串,而不是分配的数据。 https://screenshots.firefox.com/pDElTgV9EB58BjbS/127.0.0.1我做错了什么?

const app = new Vue({
el: "#app",
data: {
bobby: {
first: "Bobby",
last: "Boone",
age: 25
},
john: {
first: "John",
last: "Boone",
age: 35,
}
},
computed: {
bobbyFullName() {
return '${this.bobby.first} ${this.bobby.last}'
},
johnFullName() {
return '${this.john.first} ${this.john.last}'
}
},
template: `
<div>
<h1>Name: {{bobbyFullName}}</h1>
<p>Age {{bobby.age}}</p>

<h1>Name: {{johnFullName}}</h1>
<p>Age {{john.age}}</p>

</div>
`
})

最佳答案

JS template literal使用反引号而不是单引号。

computed: {
bobbyFullName() {
return `${this.bobby.first} ${this.bobby.last}`;
},
johnFullName() {
return `${this.john.first} ${this.john.last}`;
}
}

关于javascript - 这个使用 Vue2 JS 的基本计算数据值有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54167383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com