【发布时间】:2018-02-11 11:08:03
【问题描述】:
鉴于e 是Vue.js 数据,我想在点击网址/profile/someusername 时触发。
<a th:href="@{/profile}">{{e.username}}</a>
【问题讨论】:
鉴于e 是Vue.js 数据,我想在点击网址/profile/someusername 时触发。
<a th:href="@{/profile}">{{e.username}}</a>
【问题讨论】:
有一些时间在文档上。我发现了更清洁、更好的修复方法。
<a v-bind:href="'/baseAppPath/profile/'e.username">{{e.username}}</a>
或
<a :href="'/baseAppPath/profile/'e.username">{{e.username}}</a>
【讨论】: