2 Star 0 Fork 0

李晶/微拓小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
//app.js
App({
data: [
],
navTo: function (e) {
wx.navigateTo({
url: e,
})
},
onLaunch: function () {
},
radTo: function (e) {
wx.redirectTo({
url: e,
})
},
globalData: {
userInfo: null
},
request: function (a) {
a.data || (a.data = {});
wx.request({
url: a.url,
header: a.header || {
"content-type": "application/x-www-form-urlencoded"
},
data: a.data || {},
method: a.method || "GET",
dataType: a.dataType || "json",
success: function (t) {
a.success && a.success(t.data);
},
fail: function (t) {
console.warn("--- request fail >>>"), console.warn(t), console.warn("<<< request fail ---");
wx.showModal({
title: "网络请求出错",
content: t.errMsg,
showCancel: !1,
success: function (t) {
t.confirm && a.fail && a.fail(t);
}
});
},
complete: function (t) {
200 != t.statusCode && (console.log("--- request http error >>>"), console.log(t.statusCode),
console.log(t.data), console.log("<<< request http error ---")), a.complete && a.complete(t);
}
});
},
isLogin: function () {
var userInfo = wx.getStorageSync("userInfo");
if (!userInfo) {
wx.reLaunch({
url: '../index/index'
})
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ZenMeYeBuXiangLong/micro_extension_program.git
git@gitee.com:ZenMeYeBuXiangLong/micro_extension_program.git
ZenMeYeBuXiangLong
micro_extension_program
微拓小程序
master

搜索帮助