51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#小程序推广渠道
小程序--按钮返回上页
wx.navigateBack(); ...
代码星球
·
2021-01-09
程序
按钮
返回
上页
小程序--重新获取用户授权
微信小程序这个设计确实给开发者带来了一些不便。当用户拒绝之后没法在短时间内再次弹窗提示用户授权,如果非要获取用户信息的话,业务流程就受阻了。但是,小程序还是留了一个口子。wx.openSetting({success:(res)=>{console.log(res);}}); ...
代码星球
·
2021-01-09
程序
重新
获取
用户
授权
小程序-setData方法使用--改变默认数据data初始值方法
"resetdata":function(){//写触发函数绑定在页面上this.setData({//this.setdata很重要"changdata":"哈哈哈哈哈setData调用后文字"//重新设置data里面的"changdata"的值})} ...
代码星球
·
2021-01-09
方法
程序
-setData
使用
改变
小程序-全局变量
globalData:{encryptedData:null,iv:null,session:null},unload:{varthat=thissessionKey:that.globalData.session} ...
代码星球
·
2021-01-09
程序
全局
变量
小程序--获取openid
//app.jsApp({onLaunch:function(){console.log('1')wx.login({success:function(res){console.log(res.code)//这就是codeif(res.code){//发起网络请求wx.request({url:'https://zji...
代码星球
·
2021-01-09
程序
获取
openid
小程序-获取openid
console.log(res.code)//这就是codewx.request({url:'https://zjite.applinzi.com?code='.res.code,method:"GET",header:{'content-type':'application/json'},success:functi...
代码星球
·
2021-01-09
程序
获取
openid
微信小程序--简易table表格
table.wxml<viewclass="table"><viewclass="trbg-w"><viewclass="th">head1</view><viewclass="th">head2</view><viewclass="th"&...
代码星球
·
2021-01-09
微信
程序
简易
table
表格
微信小程序--简单页面跳转
首先对text设置监听事件 <viewbindtap="toast"class="usermotto"> <textclass="user-motto">{{motto}}</text> </view>然后对该text设置事件跳转...
代码星球
·
2021-01-09
微信
程序
简单
页面
跳转
小程序禁止下拉更新
在json中编辑{"enablePullDownRefresh":false} ...
代码星球
·
2021-01-09
程序
禁止
下拉
更新
小程序--登录获取code
wx.login({success:function(res){varcode=res.code;if(code){console.log('获取用户登录凭证:'+code);//---------发送凭证------------------wx.request({url:'https://www.my-domain....
代码星球
·
2021-01-09
程序
登录
获取
code
小程序-get提交
<formbindsubmit="formSubmit">...
代码星球
·
2021-01-09
程序
-get
提交
小程序--获取code
wx.login({success:function(res){varcode=res.code;if(code){console.log('获取用户登录凭证:'+code);//---------发送凭证------------------wx.request({url:'https://www.my-domain....
代码星球
·
2021-01-09
程序
获取
code
微信小程序获取用户openId
wx.login({success:function(res){res.code})获取到code后,传到后台,然后请求微信接口https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&am...
代码星球
·
2021-01-09
微信
程序
获取
用户
openId
微信小程序之地图功能
.wxml<mapid="map"longitude="{{longitude}}"latitude="{{latitude}}"scale="14"controls="{{controls}}"bindcontroltap="controltap"markers="{{markers}}"bindmarkert...
代码星球
·
2021-01-09
微信
程序
地图
功能
微信小程序--地图导航
wx.getLocation({type:'gcj02',//返回可以用于wx.openLocation的经纬度success:function(res){varlatitude=res.latitudevarlongitude=res.longitudewx.openLocation({latitude:latitu...
代码星球
·
2021-01-09
微信
程序
地图
导航
首页
上一页
...
44
45
46
47
48
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他