#程序猫

小程序--获取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

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

微信小程序--简易table表格

table.wxml<viewclass="table"><viewclass="trbg-w"><viewclass="th">head1</view><viewclass="th">head2</view><viewclass="th"&...

微信小程序--简单页面跳转

首先对text设置监听事件 <viewbindtap="toast"class="usermotto">  <textclass="user-motto">{{motto}}</text> </view>然后对该text设置事件跳转...

小程序禁止下拉更新

在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

小程序-get提交

 <formbindsubmit="formSubmit">...
代码星球 ·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

微信小程序获取用户openId

wx.login({success:function(res){res.code})获取到code后,传到后台,然后请求微信接口https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&am...

微信小程序之地图功能

.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

PHP 微信公众号/小程序获取openid,用户信息

地址:https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=redirectUrl&response_type=code&scope=snsapi_userinfo&state=1&...

JavaScript事件处理程序的3种方式

最近这段时间因为每天要修改网站,为网站做特效,所以看了很多的js接触事件,自己只会使用一小部分,有时用的时候也比较混乱,现在系统的整理了一下,首先跟大家在马海祥博客上跟大家分享的是JavaScript事件处理程序的3种方式:一、什么是JavaScript事件?事件(Event)是JavaScript应用跳动的心脏,也是...

XML文档的PHP程序查询代码

PHP文档:<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><linkrel="shortcuticon"hre...
首页上一页...4445464748...下一页尾页