48、支付**優化(封裝統一的請求頭到request方法中)
如果發起request請求的路徑帶有 /my/ 自己帶上header請求頭
request\index.js
// 同時傳送非同步**的次數
let ajaxtimes =0;
export
const
request
=(params)
=>;if
(params.url.
includes
("/my/"))
ajaxtimes++
;// 顯示載入中效果
wx.showloading()
;return
newpromise
((resolve, reject)
=>
, fail:
(err)
=>
,// 不管載入成功或者失敗都執行
complete:()
=>}}
);})
}// 以上是封裝過的 傳送請求方法
pages\pay\index.js 刪除 header請求頭引數
①加入購物車——>結算支付——>觀察傳送請求(token值的變化)
加入購物車——>結算支付——>觀察傳送請求——>
②如果不支付(支付失敗)_私人路徑——>重新跳轉到首頁(發請求需要許可權認證)
沒有發現:authorization:token值
剛才的封裝已經成功(後期在傳送請求時 可以忽略請求頭的許可權驗證了)
微信小程式專案 秋泊優選60
56 訂單查詢頁面 動態渲染 pages order index.wxml class order main wx for i wx key order id class order item class order no row class order no text 訂單編號view class...
(微信小程式)一 初識微信小程式
需要看的 先是檔案目錄 一 pages 他存放於多個頁面 如 index log頁面。可以把他裡面的每個資料夾看成乙個整體。這個整體存放著 html css 和 資料 1 index資料夾 存放的index頁面的目錄。2 index.js 他可以處理得到 ajax 或自定義定義的資料。把得到的值封裝...
微信小程式專案開發教程
1.目錄結構 test page index index.js index.json index.wxml index.wxss onlaunch function onshow function onhide function globaldata debug true page containe...