码迷,mamicode.com
首页 > 其他好文 > 详细

微擎自动获取地址

时间:2017-05-15 11:13:20      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:message   .json   menus   收货地址   ref   scan   失败   read   creat   

mobile/commom/footer_new

chooseWXPay后面加上openAddress

jssdkconfig.jsApiList = [‘checkJsApi‘,‘onMenuShareTimeline‘,‘onMenuShareAppMessage‘,‘onMenuShareQQ‘,‘onMenuShareWeibo‘,‘showOptionMenu‘,‘scanQRCode‘,‘chooseWXPay‘];

wx.onMenuShareWeibo(window.shareData);
后面加上这段代码

把微信获取到的地址的返回值提交到shop/address

存进数据表sz_yi_member_address

 

wx.ready(function () {
wx.openAddress({
success: function (res) {

core.json(‘shop/address‘, {‘op‘: ‘new1‘,address:res}, function(res) {


if (res.status == 1) {

location.href = "{php echo $this->createMobileUrl(‘order/confirm‘)}&id={$_GPC[‘id‘]}&optionid=" +"{$_GPC[‘optionid‘]}" + "&total=" + "{$_GPC[‘total‘]}"+‘&number=123‘;

alert(‘获取地址成功‘);
}else{
alert(‘获取地址失败‘);
}

}, true, true);

}
})
});

 

点击事件点击获取微信收货地址才获取微信收货地址

mobile/confirm.html

选择地址的js那里换成点击address_new才往下执行

加载尾部{template ‘common/footer_new‘}

微擎自动获取地址

标签:message   .json   menus   收货地址   ref   scan   失败   read   creat   

原文地址:http://www.cnblogs.com/MalongSing/p/6855487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!