如何有条件地添加查询参数以在Vue.js中进行路由?

时间:2018-08-29 13:33:07

标签: javascript vue.js vue-router

点击按钮后,我正在使用vue-router重定向到新的URL。我希望路由器仅在查询参数实际被填充的情况下才将查询参数添加到URL中。因此,如果它是null,则应该添加参数。

目前,此功能无法正常运行。请查看以下代码段(选择每个选项,然后单击按钮)。

(似乎您不能在Stackoverflow上使用路由,因此请同时查看JSFiddle上的代码段:https://jsfiddle.net/okfyxtsj/28/

Vue.use(VueRouter);

new Vue({
  el: '#app',
  router: new VueRouter({
    mode: 'history',
  }),
  computed: {
  	currentRoute () {
    	return this.$route.fullPath
    }
  },
  data () {
  	return {
    	some: this.$route.query.some || null      
    }
  },
  template: '<div><select v-model="some"><option :value="null">Option (value = null) which leaves empty parameter in URL</option><option value="someParameter">Option (value = someParameter) which shows parameter with value in URL</option><option :value="[]">Option (value = []) which removes parameter from URL</option></select><br><button @click="redirect">Click me</button><br><br><div>Current Path: {{ currentRoute }}</div></div>',
  methods: {
  	redirect () {
    	this.$router.push({
        path: '/search',
        query: {
          some: this.some || null
        }
      })
    }
  },
  watch: {
    '$route.query': {
      handler(query) {
      	this.some = this.$route.query.hasOwnProperty('some') ? this.$route.query.some : null
      },
    },
  },
  watchQuery: ['some']
});
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>


<div id="app"></div>

somenull时,该参数仍将添加到URL。当some为空数组时,不会将其添加到URL。

我不想使用空数组作为默认值,因为该值应始终为字符串。

那么,如何确保查询参数仅包含除null以外的其他值,才添加到新路由?

1 个答案:

答案 0 :(得分:0)

使用简单的if-elseternary构造。还更喜欢some的计算属性,而不是观察者:

Vue.use(VueRouter);

new Vue({
    el: '#app',
    router: new VueRouter({
        mode: 'history'
    }),
    computed: {
        some() {
            return this.$route.query.some || null;
        }
    },
    data() {
        return {};
    },
    methods: {
        redirect() {
            const routeConfig = this.some
                ? { path: '/search', query: { search: this.some } }
                : { path: '/search' };

            this.$router.push(routeConfig);
        }
    },
    // Remaining config like template, watchers, etc.
});