index.wxml
<navigator class="navs" url="{{urls}}"> 中國 </navigator>
index.js
Page({ data: { urls:'/pages/lanbo/lanbo?title=我是Index里面的title數據' } })
要跳轉的頁面lanbo頁面
lanbo.wxml
<text>pages/lanbo/lanbo.wxml</text>
lanbo.js
Page({ data: { }, onLoad: function (options) { this.setData({ title:options.title }); console.log(this.data.title); } })
跳轉頁面之后請在調試模式下中的console下查看數據。