音乐网站建设的意义,网站整体策划与设计,耒阳住房与建设局网站,表白二维码生成器我们平时开发中也经常遇到这种场景#xff0c;跳转一个页面会进行一些操作#xff0c;操作完成后再返回上个页面同时要携带着一些参数
其实也很简单#xff0c;也来记录一下吧
假设从A页面 跳转到 B页面
A页面
直接上完整代码了哈#xff0c;很简单#xff1a;
t…我们平时开发中也经常遇到这种场景跳转一个页面会进行一些操作操作完成后再返回上个页面同时要携带着一些参数
其实也很简单也来记录一下吧
假设从A页面 跳转到 B页面
A页面
直接上完整代码了哈很简单
templateview classcontentbutton clickgotoDemo()跳转/button/view
/template
scriptexport default {onLoad() {// 跟vue的兄弟传值一个意思uni.$on(face-msg, this.faceMsg)},onUnload() {uni.$off(face-msg)},methods: {// 接收参数faceMsg(data) {console.log(data, 接受的参数--)},// 页面跳转gotoDemo() {uni.navigateTo({url: /pages/demo/index})}}}
/scriptB页面
templateview classcontentbutton clickback()返回上一页/button/view
/template
scriptexport default {methods: { back() {// 返回上个页面携带的书const faceData {name: wft,age: 18}uni.navigateBack({url: /pages/index/index?typeface,success() {uni.$emit(face-msg, faceData)}})}}}
/script