你好,请问最后是在onload里面获取参数的吗?
onShareAppMessage转发参数获取不到第二个我转发时候的path 是 pages/details/details?id=22468&shopid=790, 但是在获取后面参数的的时候,query里只能拿到id的值,shopid变成了index:0; 这个该怎么办呢??
2018-08-02你好,请问最后是在onload里面获取参数的吗?
onShareAppMessage转发页面,别人打开数据全为空onShareAppMessage转发页面,自己看到都是正常的,但是转发给别人数据全是空值,onLoad获取不到全局和从别的页面传递的数据。 求大神帮解答。 <!--pages/detailedJD/detailedJD.wxml--> <view wx:for="{{JobDescription}}" wx:key="0"> <view class="part1"> <view class="columnList"> <view class="rowList rowList1"> <text class="company">{{item.jobTitle}}</text> <text class="duration">{{duration}}天前</text> </view> <!--end rowList--> <text class="location">{{item.address}}∙{{item.company}}</text> </view> <!--end columnList--> </view> <view class="separate"></view> <scroll-view class="scroll part2" scroll-y="true" enable-back-to-top="true"> <view class="columnList"> <text class="job">职位详情:</text> <text class="jobdescription" style="width:{{normalWidth}}px;">{{item.jobDescription}}</text> <image class="jobimg" style="width:{{normalWidth}}px;"src="{{item.jobImage}}"></image> </view> <!--end columnList--> </scroll-view> <view class="separate"></view> <view class="part3"> <view class="columnList"> <text class="contact">联系信息:</text> <text class="contactInfo">{{item.contactInfo}}</text> </view> <!--end columnList--> </view> <view class="part4"></view> <view class="bar"> <view class=" rowList watcherman"> <image class="watcherimg" src="../../images/watch.png"></image> <text class="watcher">{{watcherNum}}</text> <button class="shareButton" id="shareBtn" open-type="share">分享</button> </view> </view> <!-- Bar--> </view> onLoad: function (options) { var that = this; var currentwatcherNum = 0; if (app.globalData.glbalShowDetailJobInfo[0].watcher) { currentwatcherNum = app.globalData.glbalShowDetailJobInfo[0].watcher; } var duration = 0; var publichTime = app.globalData.glbalShowDetailJobInfo[0].date.split("-"); var curruntTime = util.formatTime(new Date()).substring(0, 10).split("/"); duration = (curruntTime[0] - publichTime[0]) * 365 + (curruntTime[1] - publichTime[1]) * 30 + (curruntTime[2] - publichTime[2]); this.setData({ JobDescription: app.globalData.glbalShowDetailJobInfo, watcherNum: currentwatcherNum, normalWidth: app.globalData.globalwindowWidth - 40, duration: duration }) var data = this.data.JobDescription; }, onShareAppMessage: function (options) { if (options.from === 'button') { // 来自页面内转发按钮 console.log(options.target) console.log(this.data.id) // } return { title: ' XXXX', path: '/pages/detailedJD/detailedJD?id=' + this.data.id, success: function (res) { console.log("forward success") // 转发成功 }, fail:function(res){ } } }
2018-08-02你好,请问最后是在onload里面获取参数的吗?
onShareAppMessage我调用 onShareAppMessage分享到群里, onShareAppMessage: function(res) { console.log(res) if (res.from === 'menu') { // 来自页面内转发按钮 console.log(res.target) } return { title: '推广大师', path: '/pages/index/index?openid=121', imageUrl: '/pages/image/shenfen.png', success: function(res) { // 转发成功 }, fail: function(res) { // 转发失败 console.log("转发失败:" + JSON.stringify(res)); } } }, 在index的onload的方法里面获取参数,现在问题是我自己点击我分享的连接,可以获取到参数,但是别人点击我的链接,可以进来,但是获取不到参数,onload好像没有执行
2018-08-02你好,请问最后是在onload生命周期函数中用 options.id获取到的这个值吗?
小程序分享后path的参数获取不到- 需求的场景描述(希望解决的问题) onShareAppMessage: function (res){ if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } return { title: this.data.shareDetail.shareTitle, imageUrl: this.data.shareDetail.shareLogoUrl, path: "/pages/orderdetail/orderdetail?id=xiaochengxi", } } 分享后点开分享的连接不能获取参数id的值 - 希望提供的能力 怎样能获取分享连接的所有参数
2018-08-02前辈,这个问题你们是通过引入第三方插件实现的吗?
MD5加密和base64编码小程序请求数据怎么进行MD5加密和base64编码 ,小程序能引入第三方插件吗
2018-07-31前辈,这个问题解决了吗?小程序中加密是怎么实现的?
请求接口添加MD5加密怎么加?我想在请求的接口上添加MD5加密怎么加呢
2018-07-31