微信小程序页面之间传参的实现方法 0 By 董德多 on 2022年9月14日 小程序 1、在原页面的跳转方法中将参数拼接在 url 中:wx.navigateTo({ url: '../test/test?site=www.02405.com' })2、在打开的页面中获取参数:onLoad: function (options) { console.log(options) } 微信小程序
uni-app 编译成微信小程序后,提示:Component is not found in path “components/xxx/xxx” (using by “pages/xxx/xxx”) 错误的解决办法 Vue By 董德多