51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#做小程序多少钱
小程序-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
微信
程序
地图
导航
一:怎样运行python程序
运行python程序有三种方法:1,在命令行运行python代码:C:/python27>pythonhello.py 【注:如果没有把PATH环境变量设置为包含这一路径,要确保输入到了python的完整路径,并且如果py程序不在同一文件夹下,需要声明绝对路径】 eg:...
代码星球
·
2021-01-09
怎样
运行
python
程序
PHP 微信公众号/小程序获取openid,用户信息
地址:https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=redirectUrl&response_type=code&scope=snsapi_userinfo&state=1&...
代码星球
·
2021-01-09
PHP
微信
公众
程序
获取
首页
上一页
...
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
其他