wechat request
1.0.0
ตามคำขอ http ของแอปเพล็ต Promise WeChat แอปเพล็ตนี้มีน้ำหนักเบา กะทัดรัด เป็นมิตรกับ API และมีฟังก์ชันมากมาย
yarn add wechat-request
npm install wechat-request --save
import wxRequest from 'wechat-request';
ก่อนอื่นมา get
แบบง่ายๆกันก่อน
// 向具有给定ID的用户发出请求
wxRequest . get ( '/user?id=12345' )
. then ( function ( response ) {
console . log ( response ) ;
} )
. catch ( function ( error ) {
console . log ( error ) ;
} ) ;
// 可选地,上面的请求也可以按照
wxRequest . get ( '/user' , {
params : {
id : 'number'
}
} ) . then ( function ( response ) {
console . log ( response ) ;
} ) . catch ( function ( error ) {
console . log ( error ) ;
} ) ;
// 想要使用 async/await? 将`async`关键字添加到外部函数/method
async function getUser ( ) {
try {
const response = await wxRequest . get ( '/user?ID=12345' ) ;
console . log ( response ) ;
} catch ( error ) {
console . error ( error ) ;
}
}
ใช้ async/waait ในรูปแบบต่างๆ เพื่อเริ่มต้นเส้นทางการเขียนโค้ดที่สะดวกและสนุกสนาน
แล้วมาขอ post
อีก
wxRequest . post ( '/user' , {
firstname : 'firstname' ,
lastname : 'lastname'
} ) . then ( function ( response ) {
console . log ( response ) ;
} ) . catch ( function ( error ) {
console . log ( error ) ;
} ) ;
ตัวอย่างการดำเนินการคำขอหลายรายการพร้อมกัน
function getUserAccount ( ) {
return wxRequest . get ( '/user/12345' ) ;
}
function getUserPermissions ( ) {
return wxRequest . get ( '/user/12345/permissions' ) ;
}
wxRequest . all ( [ getUserAccount ( ) , getUserPermissions ( ) ] )
. then ( response => {
// dosoming ...
} ) ;
แน่นอนว่า นอกเหนือจากคำ get
และ post
ต์ทั่วไปแล้ว คำขออื่นๆ ยังได้รับการจัดแพ็คเกจเหมือนกันอีกด้วย
wxRequest.request(config)
wxRequest.get(url[, config])
wxRequest.delete(url[, config])
wxRequest.head(url[, config])
wxRequest.options(url[, config])
wxRequest.post(url[, data[, config]])
wxRequest.put(url[, data[, config]])
wxRequest.patch(url[, data[, config]])
หมายเหตุ: เมื่อใช้
url
วิธีการแทน ไม่จำเป็นต้องระบุmethod
และแอตทริบิวต์data
ในการกำหนดค่า
สถานการณ์การใช้งาน คำขอของผู้ใช้ต้องใช้โทเค็นหรือคำนำหน้าที่อยู่ ซึ่งสามารถกำหนดค่าได้เพียงครั้งเดียว ซึ่งช่วยประหยัดเวลาและความกังวล
wxRequest . defaults . baseURL = 'https://api.example.com' ;
wxRequest . defaults . headers [ 'Authorization' ] = AUTH_TOKEN ;
wxRequest . defaults . headers . post [ 'Content-Type' ] = 'application/x-www-form-urlencoded' ;
เอ็มไอที