不跳转啊老师 帮看下啊 两种方法都试了,哪怕跳个空也行啊
WXML里面:
<button bind-tap="gotoComment" data-movieid="{{item.id}}" class='movie-commnt'>评价</button>
JS里面:
gotoComment: function (event) {
wx.navigateTo({
url: '../comment/comment?movieid=' + event.target.dataset.movieid,
})
// ({
// url: ../comment/comment?movieid=${event.target.dataset.movieid}`,
// });
},