2022年快过去了真机不生效问题还没解决
map.includePoints 的padding无效<!-- .wxml --> <map id='myMap' longitude='{{longtitude}}' latitude='{{latitude}}' show-location scale='12' markers='{{markers}}' bindmarkertap='tapToShowCard' bindcallouttap='tapToShowDetail'></map> <!-- .js --> var sourceMarker = [{ latitude: 24.508513, longitude: 118.107597, iconPath: '../../sources/marker.png', width: 22, height: 30, callout: { content: '查看详情', fontSize: 16, borderRadius: 5, padding: 8, display: 'ALWAYS' } },{ latitude: 24.508439, longitude: 118.10778, iconPath: '../../sources/marker.png', width: 22, height: 30, callout: { content: '查看详情', fontSize: 16, borderRadius: 5, padding: 8, display: 'ALWAYS' } },{ latitude: 24.5084, longitude: 118.107168, iconPath: '../../sources/marker.png', width: 22, height: 30, callout: { content: '查看详情', fontSize: 16, borderRadius: 5, padding: 8, display: 'ALWAYS' } }] Page({ /** * 页面的初始数据 */ data: { latitude: 0, longtitude: 0, markers: sourceMarker, points: sourcePoints }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this; wx.getLocation({ success: function(res) { that.setData({ latitude: res.latitude, longtitude: res.longitude }) that.mapCtx = wx.createMapContext('myMap'); that.includePoints(); }, }) }, includePoints: function () { this.mapCtx.includePoints({ padding: [20], points: [{ latitude: 24.508513, longitude: 118.107597, }, { latitude: 24.508439, longitude: 118.10778, }, { latitude: 24.5084, longitude: 118.107168, }] }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })
2022-10-28使用wx.getFileSystemManager().writeFile可以解析二进制流保存进临时路径,效果等同于URL.createObjectURL(new Blob(...)),如无特殊需求不需要用到blob
微信小程序不支持Blob对象吗?[图片] 这个是我在开发者工具上面生成的小程序码。因为官方api给我返回的是二进制流的数据,我就用blob解码了一下,但是在真机上面,log打印Blob is not defined. [图片] 我现在想问,如何解决真机不支持Blob对象的问题了,以及是否有替代方案
2022-07-12这个我也发现了,去年测试用的小项目就出现过这种情况,但是真机环境是跑不通的
【开放数据“逃逸”】小游戏可从开放数据域向主域发送数据工具、iOS、Android均已验证可行。 为避免风险代码暂且不公开,请官方通过可验证方式(如最近回答过问题且带有“官方”标识)私信联系获取代码片段。 [图片] [图片][图片]
2021-10-31duration这个属性在真机里获取不到正确的时长(比实际时长短),可以log一下看看,同一个音频在开发工具里的时长和在真机里的时长不一样
小程序音频api拿到的duration总时长和播放currentTime位置的时长为什么不一致?打印的前面的是api获取的总时长,后面的是当前音频的播放位置 每一个音频都是相差100s,毫秒不计,然后监听才回调结束播放,测试了好几个音频都是这样 [图片]
2020-05-22