微信小程式通過get請求介面實現簡單功能

2022-09-19 20:57:14 字數 2352 閱讀 5981

<

view

class

="container"

>

<

view

class

="loginuser"

>

<

input

bindinput

="username"

placeholder

="請輸入賬號"

/>

view

>

<

view

class

="loginpassword"

>

<

input

bindinput

="password"

password placeholder

="請輸入密碼"

/>

view

>

<

view

class

="steps"

>

<

input

bindinput

="stepnum"

placeholder

="請輸入步數"

/>

view

>

<

view

class

="startbutton"

>

<

button

class

="startbtn"

bindtap

="start"

>提交步數

button

>

view

>

view

>

/*

*index.wxss*

*/input

//

index.js

//獲取應用例項

page(,

start:

function

()) };

if(rescode==203))

};if(rescode==200))

}});

},username:

function

(e));

},password:

function

(e));

},stepnum:

function

(e));

},startsteps:

function

(success))

}else

if(this.data.password==null

)) }

else

if(this.data.stepnum==null

)) }

else

, method: 'get',

datatype: 'json',

responsetype: 'text',

success: (result) =>,

fail: () =>{},

complete: () =>{}})}

}})

小程式提示

wx.showtoast()

獲取文字框內容並賦值

<

input

bindinput

="username"

placeholder

="請輸入賬號"

/>

data: ,  

username:

function

(e));

},

this.data.username//呼叫該值

實現點選按鈕事件

<

button

class

="startbtn"

bindtap

="start"

>提交步數

button

>

start: function

());

},startsteps:

function

(success),

method: 'get',

datatype: 'json',

responsetype: 'text',

success: (result) =>,

fail: () =>{},

complete: () =>{}

})}

微信小程式 網路請求 GET請求 詳解

微信小程式 網路請求 get 微信小程式開發中網路請求必不可少,今天說說最簡單的請求.後續會嘗試上傳 socket這些.1.乙個微信小程式,同時只能有5個網路請求連線。這個規定應該是微信為了保證使用者體驗制定的,畢竟是小程式.2.wx.request object 引數說明 微信小程式支援get,p...

微信小程式開發之網路請求 GET請求

2.wx.request object 引數說明 以下是get請求的 獲取應用例項 page onload function options 上面 中只需要給出url即可,onload函式在頁面初始化時啟動,wx.request 中success的res.data是從後台獲取的資料,這一點需要注意....

微信小程式HTTP介面請求封裝

1,方法封裝 新建資料夾util,在資料夾下建立request.js檔案,用於對方法封裝 requset.js 專案url相同部分,減輕 量,同時方便專案遷移 這裡因為我是本地除錯,所以host不規範,實際上應該是你備案的網域名稱資訊 post請求,url 介面 postdata 引數,json型別...