真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

「小程序JAVA實戰(zhàn)」小程序loading提示框與頁面跳-創(chuàng)新互聯(lián)

登錄注冊都完成了,有可能會遇到一些問題,服務(wù)器繁忙的話,后臺接口卡主了,也沒任何提示,小程序端的用戶比較暴力一直惦記怎么辦。

讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:空間域名、網(wǎng)站空間、營銷軟件、網(wǎng)站建設(shè)、奎文網(wǎng)站維護、網(wǎng)站推廣。

加載提示框,隱藏加載中提示框,頁面跳轉(zhuǎn)

https://developers.weixin.qq.com/miniprogram/dev/api/api-react.html#wxshowtoastobject
https://developers.weixin.qq.com/miniprogram/dev/api/api-react.html#wxhideloading

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

跳轉(zhuǎn)實例

  • 用戶登錄


  • 用戶注冊

const?app?=?getApp()

Page({
??data:?{

??},

??doLogin:?function?(e)?{
????var?formObject?=?e.detail.value;
????var?username?=?formObject.username;
????var?password?=?formObject.password;

????//?簡單驗證
????if?(username.length?==?0?||?password.length?==?0)?{
??????wx.showToast({
????????title:?'用戶名或密碼不能為空',
????????icon:?'none',
????????duration:?3000
??????})
????}?else?{
??????wx.showLoading({
????????title:?'正在加載中。。。'
??????});
??????wx.request({
????????url:?app.serverUrl?+?"/login",
????????method:?"POST",
????????data:?{
??????????username:?username,
??????????password:?password
????????},
????????header:?{
??????????'content-type':?'application/json'?//?默認值
????????},
????????success:?function?(res)?{
??????????console.log(res.data);
??????????var?status?=?res.data.status;
??????????wx.hideLoading();
??????????if?(status?==?200)?{
????????????wx.showToast({
??????????????title:?"用戶登陸成功~!",
??????????????icon:?'none',
??????????????duration:?3000
????????????})
????????????app.userinfo?=?res.data.data;
??????????}?else?if?(status?==?500)?{
????????????wx.showToast({
??????????????title:?res.data.msg,
??????????????icon:?'none',
??????????????duration:?3000
????????????})
??????????}
????????}
??????})
????}
??},
??goLoginPage:?function?(e)?{
????console.log("跳轉(zhuǎn)到注冊");
??}
})

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

  • 用戶注冊

const?app?=?getApp()

Page({
????data:?{

????},

????doRegist:?function(e)?{
??????var?formObject?=?e.detail.value;
??????var?username?=?formObject.username;
??????var?password?=?formObject.password;

??????//?簡單驗證
??????if?(username.length?==?0?||?password.length?==?0)?{
????????wx.showToast({
??????????title:?'用戶名或密碼不能為空',
??????????icon:?'none',
??????????duration:?3000
????????})
??????}else{
????????wx.showLoading({
??????????title:?'正在加載中。。。'
????????});
????????wx.request({
??????????url:?app.serverUrl?+"/regist",?
??????????method:"POST",
??????????data:?{
????????????username:?username,
????????????password:?password
??????????},
??????????header:?{
????????????'content-type':?'application/json'?//?默認值
??????????},
??????????success:?function?(res)?{
????????????console.log(res.data);
????????????var?status?=?res.data.status;
????????????wx.hideLoading();
????????????if(status?==?200){
??????????????wx.showToast({
????????????????title:?"用戶注冊成功~!",
????????????????icon:?'none',
????????????????duration:?3000
??????????????})
??????????????app.userinfo?=?res.data.data;
????????????}else?if(status?==?500){
??????????????wx.showToast({
????????????????title:?res.data.msg,
????????????????icon:?'none',
????????????????duration:?3000
??????????????})
????????????}
??????????}
????????})
??????}
????},
????goLoginPage:function(e){
??????console.log("跳轉(zhuǎn)到登錄");
????}
})

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

  • 用戶登錄跳轉(zhuǎn)

const?app?=?getApp()

Page({
??data:?{

??},

??doLogin:?function?(e)?{
????var?formObject?=?e.detail.value;
????var?username?=?formObject.username;
????var?password?=?formObject.password;

????//?簡單驗證
????if?(username.length?==?0?||?password.length?==?0)?{
??????wx.showToast({
????????title:?'用戶名或密碼不能為空',
????????icon:?'none',
????????duration:?3000
??????})
????}?else?{
??????wx.showLoading({
????????title:?'正在加載中。。。'
??????});
??????wx.request({
????????url:?app.serverUrl?+?"/login",
????????method:?"POST",
????????data:?{
??????????username:?username,
??????????password:?password
????????},
????????header:?{
??????????'content-type':?'application/json'?//?默認值
????????},
????????success:?function?(res)?{
??????????console.log(res.data);
??????????var?status?=?res.data.status;
??????????wx.hideLoading();
??????????if?(status?==?200)?{
????????????wx.showToast({
??????????????title:?"用戶登陸成功~!",
??????????????icon:?'none',
??????????????duration:?3000
????????????})
????????????app.userinfo?=?res.data.data;
??????????}?else?if?(status?==?500)?{
????????????wx.showToast({
??????????????title:?res.data.msg,
??????????????icon:?'none',
??????????????duration:?3000
????????????})
??????????}
????????}
??????})
????}
??},
??goRegisterPage:?function?(e)?{
????wx.redirectTo({
??????url:?'../userRegister/userRegister',
????})
??}
})

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

  • 用戶注冊跳轉(zhuǎn)
    userRegister.js

const?app?=?getApp()

Page({
????data:?{

????},

????doRegist:?function(e)?{
??????var?formObject?=?e.detail.value;
??????var?username?=?formObject.username;
??????var?password?=?formObject.password;

??????//?簡單驗證
??????if?(username.length?==?0?||?password.length?==?0)?{
????????wx.showToast({
??????????title:?'用戶名或密碼不能為空',
??????????icon:?'none',
??????????duration:?3000
????????})
??????}else{
????????wx.showLoading({
??????????title:?'正在加載中。。。'
????????});
????????wx.request({
??????????url:?app.serverUrl?+"/regist",?
??????????method:"POST",
??????????data:?{
????????????username:?username,
????????????password:?password
??????????},
??????????header:?{
????????????'content-type':?'application/json'?//?默認值
??????????},
??????????success:?function?(res)?{
????????????console.log(res.data);
????????????var?status?=?res.data.status;
????????????wx.hideLoading();
????????????if(status?==?200){
??????????????wx.showToast({
????????????????title:?"用戶注冊成功~!",
????????????????icon:?'none',
????????????????duration:?3000
??????????????})
??????????????app.userinfo?=?res.data.data;
????????????}else?if(status?==?500){
??????????????wx.showToast({
????????????????title:?res.data.msg,
????????????????icon:?'none',
????????????????duration:?3000
??????????????})
????????????}
??????????}
????????})
??????}
????},
????goLoginPage:function(e){
??????wx.redirectTo({
????????url:?'../userLogin/userLogin',
??????})
????}
})

「小程序JAVA實戰(zhàn)」小程序 loading 提示框與頁面跳

PS:這次就是我們的跳轉(zhuǎn)和loading的介紹。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


當前名稱:「小程序JAVA實戰(zhàn)」小程序loading提示框與頁面跳-創(chuàng)新互聯(lián)
文章鏈接:http://weahome.cn/article/csiiig.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部