Home  >  Article  >  Web Front-end  >  How to use router to pass parameters in Vue.js

How to use router to pass parameters in Vue.js

php中世界最好的语言
php中世界最好的语言Original
2018-06-02 13:51:221234browse

This time I will show you how to use the router in Vue.js to pass parameters. What are the precautions when using the router in Vue.js to pass parameters. The following is a practical case, let's take a look.

Vue-router parameter passing

Why do we need to pass parameters in the router

Imagine a scenario. Currently on the homepage, you need to click on a certain item to view detailed information about the item. Then at this time, you need to pass the id of the item to the details page on the home page, and the details page can obtain the detailed information through the id.

vue-router parameter passing method

Parma passing parameter

Post code:

/ router/index.vue

export default new Router({
 routes: [
  {
   path: '/',
   name: 'Home',
   component: Home
  },
  {
   path: '/work',
   name: 'Work',
   component: Work
  }
 ]
  })

The component Works passes a work id to the component Work

/components/Home/Comtent/Works.vue

// 触发它传递一个对象到组件Work
getIt (id) {
 this.$router.push({
  path: '/work',
  name: 'Work',
  params: {
   id: id
  }
 })
  }

/components/Work/ Index.vue


 
 

Running screenshot:

##query parameter

Just change the above parmas to query, that is:

// 传入
 this.$router.push({
path: '/work',
name: 'Work',
query: {
 id: id
}
 })
 
 ... ...
 
 this.$route.query.id // 获取
The difference between parmas and query

query passes parameters through the url and is always displayed in the url

parmas transfer parameters, there will be no data after refreshing the page, and the obtained parameters cannot be saved

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

How to use Angular to open Font-Awesome

How to use JS and TypeScript

The above is the detailed content of How to use router to pass parameters in Vue.js. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn