SoFunction
Updated on 2025-04-03

Two implementation methods for jumping vue to the details page

Parameter passing during routing jump

Business scenarios: Click the click name of an item in the movie list page, jump to the movie details page, and view the detailed information of the selected movie. This process requires passing the movie ID as a parameter while jumping, so that the details page can obtain the selected item ID, thereby sending a request and querying detailed information.

1.Prepare a movie list page: A movie details page:

2.Configure routing:

a. When accessing address: http://localhost:8080/list, see the list page.

b. When accessing the address: http://localhost:8080/detail, see the details page.

3.Note: You need to add placeholders:

Parameter transfer method during routing jump 1

By using it after requesting the resource path?Splicing queryString method, passing parameters:

<router-link to="/detail?id=7&name=zs">xx</router-link>

Method 1: Question Mark Version

List page: Fill in the router-link tag for list items

  &lt;template&gt;
  &lt;tbody&gt;
  &lt;tr v-for="(item, i) in " :key=""&gt;
  &lt;td&gt;
  &lt;router-link :to="`/detail?id=${}`"&gt;// Question mark version  {{}}
&lt;/router-link&gt;
  &lt;/td&gt;
  &lt;/tr&gt;
  &lt;/tbody&gt;
  &lt;/template&gt;

Details page:

 &lt;template&gt;
  &lt;div&gt;
  &lt;h2&gt;Movie details page&lt;/h2&gt;
  &lt;p&gt;Movie name:{{}}&lt;/p&gt;
  &lt;p&gt;Movie Type:{{}}&lt;/p&gt;
  &lt;/div&gt;
  &lt;/template&gt;
  &lt;script&gt;
  import  myaxios from './http/MyAxios'
export default{	
  data( ){
    return{
      movieData:{ },//Bind movie object    }
  },
  mounted( ){  //The current primary key has been mounted to the DOM and is automatically called by vue when it is (exposed).    ('The life cycle is mounted is called')
    let  id  = this.$  //After receiving the request path?  key= value parameter id    ('Received parameter id:' + id)
    let url  = "/bmdapi/movie-info/query"
    (url,{ id }).then(res =&gt;{
      (res)  //The movie object { } is stored in it       = 
    })
  }
};
&lt;/script&gt;

Method 2: No question mark version

<router-link to="/detail/7">xx</router-link>
this.$('/detail/7')

How to receive this parameter on the target page?

1. Configure routing:

{
path:'/detail/:id',
component: ( ) => import ''
}

The configuration of this route will match:

/detail/7    =>   id:7
/detail/123  =>   id:123
/detail/abc  =>   id:abc

vue will automatically encapsulate the path parameters and put them in this.$ property. This parameter can be obtained as follows:

mounted(){
  	let  id = this.$
}

List page: Fill in the router-link tag for list items

<template>
   <tbody>
        <tr v-for="(item, i) in " :key="">
          <td>
          <img  :src=""  width="60px"
			@click="$(`/detail/${}`)">
          </td>
        </tr>
      </tbody>
</template>

router/configuration routing page:

{
paht:  '/detail/:id',
name: 'detail',
component: ( ) =>import ('../')
}

Details page:

&lt;template&gt;
&lt;div&gt;
&lt;h2&gt;Movie details page&lt;/h2&gt;
&lt;p&gt;Movie name:{{}}&lt;/p&gt;
&lt;p&gt;Movie Type:{{}}&lt;/p&gt;
&lt;/div&gt;
&lt;/template&gt;
&lt;script&gt;
import  myaxios from './http/MyAxios'
   export default{	
data( ){
return{
movieData:{ },//Bind movie object}
},
mounted( ){  //The current primary key has been mounted to the DOM and is automatically called by vue when it is (exposed).('The life cycle is mounted is called')
let  id  = this.$  //Receive path parameters: /detail/id parameter id('Received parameter id:' + id) 
let url  = "/bmdapi/movie-info/query"
(url,{ id }).then(res =&gt;{
(res)  //The movie object { } is stored in it = 
})
}
};
&lt;/script&gt;

Summarize

This is the article about the two implementation methods of vue jumping to the details page. For more related contents of vue jumping to the details page, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!