如何使用查询从vue router-link重定向?

时间:2018-01-30 11:03:47

标签: javascript vue.js router query-parameters routerlink

如何向路由器链接添加查询,以便通过点击通知中的链接将用户重定向到帖子下的评论?

API为我们提供了anchor通知和评论的id。当DOM呈现页面时,它首先加载帖子,然后加载评论。

以下是通知的一个组成部分:

<template>
 <div>
  <span>
   <i class="g-font-size-18 g-color-gray-light-v1"></i>
    </span>
     <router-link :to="linkFromNotification(item)
                  @click.native="linkFromNotification(item.notification_type)">
    <p>
     <span v-html="item.message"></span>
    </p>
  </router-link>
 </div>
</template>

<script>
import {mapActions, mapGetters} from 'vuex'


 export default {
 props: ['item'],
 computed: {
 ...mapGetters([
 'getNotifications'
  ])
 },
 methods: {
 ...mapActions([
 'readNotification'
 ]),
 linkFromNotification (item) {
    if (item.notification_type === 'user_subscribed') {
      return {name: 'person', params: {id: item.object_id}}
    } else if (['comment_created', 'answer_selected', 'answer_created'].includes(item.notification_type)) {
      return {name: 'show_post', params: {id: item.object_id}}
    } else if (item.notification_type === 'user_coauthored') {
      return {name: 'show_post', params: {id: item.object_id}}
     }
    }
   }
  }
 </script>

1 个答案:

答案 0 :(得分:1)

如果您的意思是url查询,则可以在要返回的对象中使用键查询, 如果你的意思是哈希&#34;#&#34;要添加到链接,您可以使用密钥哈希。例如:

{name: 'person', params: {id: item.object_id}, query:{name:"Mohd"}, hash:"214"}

Reference