微信小程序 对接口常用

Posted ThisCall

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 对接口常用相关的知识,希望对你有一定的参考价值。

that.setData({
user: wx.getStorageSync(‘user‘)
});
 
 
wx:if="{{==1}}"
 
 
chargeInto: function () {
wx.navigateTo({
url: "/pages/user/chargeintopay/chargeintopay"
})
},
 
wx.switchTab({
url: "/pages/user/index"
})
 
wx.showToast({
title: ‘登录成功‘,
icon: ‘success‘,
duration: 1000
})
 
setTimeout(function () {
 
}, 1000);
 
post请求-----------------------------------------
wx.setStorageSync(‘user‘, result)
 
let user = wx.getStorageSync(‘user‘);
 
let that = this;
 
post请求-----------------------------------------
wx.request({
header: {
"Content-Type": "application/x-www-form-urlencoded"
},
method: "POST",
url: app.globalData.hpUrl + ‘User/userAllRegister‘,
data: {
typenum: selectArr[selectIndex],
phone: loveChe.hphone,
password: loveChe.hpwd
},
success: function (res) {
var result = res.data;

console.log(res)
 
}
}
});
 

以上是关于微信小程序 对接口常用的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序与python服务,如何进行参数传递

微信小程序都有哪些接口

微信小程序之封装常用的API接口请求以及工具类方法

微信小程序之封装常用的API接口请求以及工具类方法

微信小程序之封装常用的API接口请求以及工具类方法

微信小程序之封装常用的API接口请求以及工具类方法