无法将文本绑定到 VueJS 模板中的 href 属性
Posted
技术标签:
【中文标题】无法将文本绑定到 VueJS 模板中的 href 属性【英文标题】:Unable to bind text to href attribute in VueJS template 【发布时间】:2020-08-10 02:11:12 【问题描述】:我正在使用 VueJS 构建模板。
根据我的“帖子”数据,我已经能够使用以下方法将文本绑定到 span、a 和 p 等 html 元素中小胡子语法。但是,当我尝试将文本绑定到 a 元素中的元素属性(例如 href)时,它不起作用。
我看过不同的教程,但没有一个具体说明如何在同一代码中将文本绑定到元素和它们的属性 - 大多数都显示一个或另一个但不在同一个模板中一起显示。
我的 HTML 如下所示:
<div id="app">
<div class="container-fluid">
<ul class="list-group">
<post v-for="post in posts" :post="post"></post>
</ul>
</div>
</div>
<template id="post-template">
<li class="list-group-item">
<a :href="posts.url"> post.title </a>
<p>post.text</p>
</li>
</template>
我的 JS 看起来像这样:
Vue.component('post',
template: "#post-template",
props: ['post']
);
var vm = new Vue(
el: "#app",
data:
posts: [
title: "First post!",
text: "First text",
url: "www.firsturl.com"
,
title: "Second post!",
text: "Second text",
url: "www.secondurl.com"
,
title: "Third post!",
text: "Third text",
url: "www.thirdurl.com"
]
);
See my code in JSFiddle
【问题讨论】:
属性不需要花括号::href="post.url"
【参考方案1】:
在属性中,你必须直接指出 props 或 JS 表达式,不要留胡子:
<a :href="url"> post.title </a>
【讨论】:
【参考方案2】:你不需要在文本绑定上使用双括号:
<a :href="post.url"> post.title </a>
【讨论】:
以上是关于无法将文本绑定到 VueJS 模板中的 href 属性的主要内容,如果未能解决你的问题,请参考以下文章
如何将 id 绑定到 vuejs 中的 ajax 请求 url?
如何将检索到的数据从 v-for 绑定到 Vuejs 中的数据对象?