1.在app.json中创建详情界面comment
![](https://box.kancloud.cn/1c618dbbfdc839a8ec6748993ea1043f_1436x540.png)
2.给按钮绑定事件处理函数
```
< button bindtap = "gotoComment" data-movieid = "{{item.id}}" class = "movie-comment" > 评价 < /button>
```
![](https://box.kancloud.cn/addf7f310649757247be4f7f94b4637f_399x151.png)
3.在moive.js中书写跳转详情函数
```
/**
* 跳转详情函数
*/
gotoComment: function (event) {
wx.navigateTo({
url: '../comment/comment?movieid='+event.target.dataset.movieid,
});
},
```
4.在comment.js中获取传过来的参数
```
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
console.log(options);
},
```
5.点击电影评价进入详情,即可以看到已经获取到了参数
![](https://box.kancloud.cn/272e0dfcf8d70a022a478d091a7fbb00_1519x875.png)