没办法确认好友关系。没有提供相应的接口。如果有这个接口早就有人做出来检测僵尸好友的小程序了
两个用户之间关系有没有办法知道两个用户之间是否为好友?
2018-10-22安卓和iOS展示不一样。是点击空白处消失的
wx.showActionSheet安卓不显示底部消失按钮?wx.showActionSheet({ itemList: ['列1', '列2', '列3'],//显示的列表项 success: function (res) {//res.tapIndex点击的列表项 console.log("点击了列表项:" + that[res.tapIndex]) }, fail: function (res) { }, complete: function (res) { } })
2018-10-08去掉adjust-position="{{false}}" /**index.wxss**/ .footer{ position:fixed; bottom:0; left:0; width:750rpx; border:solid 1px #333; } .input{ width:690rpx; padding: 20rpx 30rpx; height: 50rpx; }
关于输入框、键盘、页面不共存问题连续提问了几次 小程序里面要实现聊天的功能,目前遇到的一个问题。 1、点击输入框后,页面往上移动了,无法看不到原有的文字。尤其是聊天内容不多的情况下。 2、设置adjust-position=false时,点击输入框,键盘向上移动,覆盖了输入框。 如何解决这个问题?谢谢 <!--index.wxml--> <view class="container"> <view class="mainer"> <view>文本2</view> </view> <view class="footer"> <input class="input" adjust-position="{{false}}"/> </view> </view> /**index.wxss**/ .container{ height:100%; } .mainer{} .footer{ position:fixed; bottom:0; } .input{ border:solid 1px red; }
2018-06-04