- 获取手机系统信息
微信小程序如何获取手机IMEI,想实现原生app功能,因为原生app网络访问接口中用到了手机IMEI,小程序也要使用,要不链接不了网络。谁有办法获取吗?
2017-11-10 - tabBarAndroid ios问题
[图片]点击下面的bar android手机不会出现上面报的错误问题,但是ios却会,在电脑上的模拟器也不会报错,不知道哪里出问题了 "tabBar": { "color": "#dddddd", "selectedColor": "#3cc51f", "backgroundColor": "#ffffff", "borderStyle": "white", "list": [ { "pagePath": "pages/index/index", "iconPath": "image/we-icon.png", "selectedIconPath": "image/we-icon-sel.png", "text": "首页" }, { "pagePath": "pages/merchant-list/merchant-list", "iconPath": "image/list-icon.png", "selectedIconPath": "image/list-icon-sel.png", "text": "商户列表" } ], "position": "bottom" }, 代码没错
2017-11-09 - showToast问题,Android只可以显示几个字,而ios可以显示多个
wx.showToast({ title: 'xxxx', icon: '', image: '', duration: 0, mask: true, success: function (res) { }, fail: function (res) { }, complete: function (res) { }, }) 对于Android机,吐司时只可以显示稍微几个字,ios显示字数比Android多
2017-10-25 - startBluetoothDevicesDiscovery()方法安卓苹果不同
[代码]wx.getBluetoothAdapterState({ success: function (res) { console.log(res) } })[代码]使用这个方法时(Android已经开启GPS服务),但是得到的discovering时Android永远得到的都是false ,而ios得到的是true ,当然 [代码]wx.startBluetoothDevicesDiscovery({ services: ['FEE7'], success: function (res) { console.log(res) } })[代码]都是在这个方法开启的前提下。而且ios可以多次执行 [代码]startBluetoothDevicesDiscovery方法,而Android第一次执行这个方法后,再次执行就会执行失败,走fail方法,而ios再次执行还会执行success方法(在手机都打开蓝牙的前提下)[代码]
2017-10-13