gpt4 book ai didi

vue.js - 如何绑定(bind)到 Vue JS 中的属性?

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

我遇到了这个错误

Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. For example, instead of <div id="{{ val }}">, use <div :id="val">.

在这条线上

<a href="/Library/@Model.Username/{{myVueData.Id}}">

它在 Angular 1 中有效。你如何在 Vue 中做到这一点?

最佳答案

在你的模板中:

<a :href="href">

然后你将 href 放在 data 中:

new Vue({
// ...
data: {
href: 'your link'
}
})

或者使用计算属性:

new Vue({
// ...
computed: {
href () {
return '/foo' + this.someValue + '/bar'
}
}
})

关于vue.js - 如何绑定(bind)到 Vue JS 中的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43062149/

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