- open-data 在iPhone6 和iPhone6plus不显示昵称头像
open-data 在iPhone6 和iPhone6plus不显示昵称头像 用的基础库是1.9.98 代码如下 <view class="mine-header"> <open-data class="mine-header2" type="userAvatarUrl"></open-data> </view> <view class="mine-list"> <view class="mine-list-left"> 昵称 </view> <view type='text' class="mine-list-right"> <open-data type="userNickName"></open-data> </view> </view>
2018-05-28 - (急急)wx.addCard()为什么添加成功返回的code是空字符串呢?
使用wx.openCard(OBJECT)需要code,但我wx.addCard(OBJECT)添加成功后返回的code是空字符串,这个怎么回事 wx.addCard({ cardList: [ { cardId: card_id, cardExt: '{"code":"","openid":"","timestamp":' + timestamp + ',"nonce_str":"' + nonceStr + '","signature":"' + dsignature + '"}' } ], success: function (res) { console.log("卡券添加结果="+JSON.stringify(res)) // 卡券添加结果 } }) [图片] appid是 wxcf6adf7d1484868d cardId是 pq4MLuGhSFCmXPU8mNdwsmxDY2LY
2018-02-04 - wx.openLocation
onLoad: function (options) { var address = decodeURI(options.address) var address_title = decodeURI(options.address_title) var latitude = Number(options.latitude) var longitude = Number(options.longitude) wx.openLocation({ latitude: latitude, longitude: longitude, name: address_title, address: address, scale: 18, success: function(res) { console.log(res) }, fail: function(err) { console.log(err) } }) } 这个是从html5里面用wx.miniProgram.navigateTo跳转回小程序打开地图的,模拟器和安卓手机正常打开,苹果手机打开空白,但调试信息返回是成功的,errMsg:"openLocation:ok" 不过__proto__:Object里面只有__proto__:null,没有其他信息,求大神解答
2017-12-05