我也遇到这个问题,设置代理就出现
控制台报未知错误[PluginSDK] invokeVerifyPlugin failed: verifyPlugin:fail connect ETIMEDOUT 223.167.86.22:443
2020-03-05客户端可以不用转吧,后台没有一个专门上传图片的接口吗,直接上传返回文件名,在拼接路径了
base64转码成url我需要拍照或者从本地上传一张图片到服务器,这中间需要先将图片转码成base64,然后再转换成url,请问小程序中有没有类似于urlencode的方法啊?求指教
2018-09-17 <view class="content mt30"> <view class="content-left"> <image src="/images/nav/call.png"></image> </view> <view class="content-right2" catchtap="callphone"> <text>{{phone}}</text> <text class="mobile-text">[一键拨号]</text> </view> </view> <view class="content mt30"> <view class="content-left"> <image src="/images/nav/phone.png"></image> </view> <view class="content-right2" catchtap="callmobile"> <text>{{mobile}}</text> <text class="phone-text">[一键拨号]</text> </view> </view> callphone:function(){ var that = this; console.log('电话' + that.data.phone) wx.makePhoneCall({ phoneNumber: that.data.phone }) }, callmobile: function () { var that = this; console.log('手机' + that.data.mobile) wx.makePhoneCall({ phoneNumber: JSON.stringify(that.data.mobile) }) },
拨打固定电话手机自动跳到手机号页面上有一个拨打手机,一个拨打固定电话的,拨打固定电话手机号会自动跳到手机号,页面打印数据是正常,都换成手机号就没有问题,这个是安卓手机出现,点击多次就会出现。
2018-07-03不知道有没有和图片大小有关
获取图片信息失败不知道获取wx.getImageInfo这个接口获取图片宽高报错是什么原因?[图片]
2018-06-11ok
mkv格式视频在ios上面黑屏,安卓可以播放mkv格式视频在ios上面黑屏,安卓可以播放
2018-05-31记录一下,是节点渲染问题
scroll-view组件的scroll-left在某些情况无效问题若组件内的内容都通过wx:for渲染的,则初始化的scroll-left无效。 <scroll-view class="items" scroll-x="true" style="width:100%" scroll-left="305"> <view class="row"> <view wx:for="{{array}}">{{item}}</view> </view> </scroll-view> 若内容都是静态初始化,则scroll-left有效 <scroll-view class="items" scroll-x="true" style="width:100%" scroll-left="305"> <view class="row"> <view>1</view> <view>2</view> <view>3</view> ... </view> </scroll-view>
2018-05-21