4
我有一個post.text
數據,其中包含用戶提交的博客文章的文本與Twitter類似,用戶可以使用sintax I am tagging @user1 in this post
提及其他用戶。在呈現帖子時,我想用指向所述用戶的頁面的鏈接替換所有的@username
實例。v-html中的Vue組件/元素
用正則表達式匹配/替換我可以很容易地轉換提到@username
到類似的信息(我使用VUE路由器):
I am tagging <router-link :to="{name: 'user', params: {userId: post.userId}}">{{ dPost.user_name }}</router-link> in this post
但是當我使用它是這樣的:
<p v-html="preparedText"></p>
vue不重新處理 html綁定自己的標籤。
如何解決這個問題?謝謝