如何将命名路由连接到router-link标签?我的代码:
<router-link
:to="'//https://t.me/share/url?url='+{name: Profile, params: {id: user.user_id}}+'&text=Hi I am ' + user.first_name + ' ' + user.last_name + ':'">Click Here</router-link>
问题是这部分:
{name: Profile, params: {id: user.user_id}}
它返回[Object object]
。如何修复它以返回该对象的正确值,例如http://example.com/profile/1
?
答案 0 :(得分:1)
无需使用router-link
来访问外部链接,因为单击时不应该使用vue-router
处理。
我建议创建一个计算属性(或方法),该属性将返回包含所有数据的完整URL。作为一种好习惯,这还将删除模板中的某些逻辑。
模板链接如下所示:
<a :href="telegramLink">Open Telegram</a>
并通过计算属性生成链接:
computed: {
telegramLink () {
const user = this.user
// Get route information by provided parameters
const route = this.$router.resolve({
name: 'Profile',
params: {
id: user.user_id
}
})
// Create full address url
const url = `${window.location.origin}${route.href}`
const text = `Hi I am ${user.first_name} ${user.last_name}:`
return `https://t.me/share/url?url=${url}&text=${text}`
}
}