91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序開發技巧匯總

發布時間:2020-08-30 08:35:11 來源:腳本之家 閱讀:129 作者:粥的進擊之旅 欄目:web開發

1.全局變量的使用

每個小程序都需要在 app.js 中調用 App 方法注冊小程序示例,綁定生命周期回調函數、錯誤監聽和頁面不存在監聽函數等。
詳細的參數含義和使用請參考 App 參考文檔 。

整個小程序只有一個 App 實例,是全部頁面共享的。開發者可以通過 getApp 方法獲取到全局唯一的 App 示例,獲取App上的數據或調用開發者注冊在 App 上的函數。

我們在做小程序的時候往往需要大量的請求,而請求的域名也都是相同的,我們可以把域名儲存到全局變量中,這樣會方便后面請求域名的修改。(user_id、unionid、user_info之類經常用到的都可以放在全局變量中)

//app.js
App({
 globalData: {
  user_id: null,
  unionid:null,
  url:"https://xxx.com/index.php/Home/Mobile/",   //請求的域名
  user_info:null
 }
})

當在頁面中使用時記得要引用下app.js,小程序已經提供了方法

//index.js
//獲取應用實例
const app = getApp()  //獲取app
//let url = app.globalData.url; //使用方法,可先定義或者直接使用app.globalData.url
wx.request({
  url: app.globalData.url + 'checkfirst', //就可以直接在這里調用
  method:'POST',
  header:{"Content-Type":"application/x-www-form/"}
  data:{},
  success:(res)=>{}

2.箭頭函數的使用

當我們調用接口請求時要通過請求返回的數據改變頁面數據經常要用到臨時指針來保存this指針。

但如果使用ES6的箭頭函數就可以避免

使用臨時指針

onLoad: function (options) {
  let that = this //保存臨時指針
  wx.request({
   url: url + 'GetCouponlist',
   method: 'POST',
   header: { 'Content-Type': 'application/x-www-form-urlencoded' },
   data: { },
   success(res) {
    that.setData({  //使用臨時指針
     coupon_length:res.data.data.length
    })
   }
  })

使用ES6箭頭函數 ( ) => {}

success:(res) => {
    this.setData({  //此時this仍然指向onLoad
     coupon_length:res.data.data.length
    })
   }

3.HTTP請求方法的封裝

在小程序中http請求是很頻繁的,但每次都打出wx.request是很煩的,而且代碼也是冗余的,所以我們要把他封裝起來
首先要在utils文件夾中新建一個js,我命名為request.js,在里面封裝出post和get的請求,記得最后要聲明出來

//封裝請求
const app = getApp()
let host = app.globalData.url

/**
 * POST 請求
 * model:{
 * url:接口
 * postData:參數 {}
 * doSuccess:成功的回調
 *  doFail:失敗回調
 * }
 */
function postRequest(model) {
 wx.request({
  url: host + model.url,
  header: {
   "Content-Type": "application/x-www-form-urlencoded"
  },
  method: "POST",
  data: model.data,
  success: (res) => {
   model.success(res.data)
  },
  fail: (res) => {
   model.fail(res.data)
  }
 })
}

/**
 * GET 請求
 * model:{
 *  url:接口
 *  getData:參數 {}
 *  doSuccess:成功的回調
 *  doFail:失敗回調
 * }
 */
function getRequest(model) {
 wx.request({
  url: host + model.url,
  data: model.data,
  success: (res) => {
   model.success(res.data)
  },
  fail: (res) => {
   model.fail(res.data)
  }
 })
}

/**
 * module.exports用來導出代碼
 * js中通過 let call = require("../util/request.js") 加載
 */
module.exports = {
 postRequest: postRequest,
 getRequest: getRequest
}

這一步非常重要記得添加!

module.exports = {
postRequest: postRequest,
getRequest: getRequest
}

使用時就在相應的頁面頂部調用,Page外部噢

let call = require("../../utils/request.js")

使用的時候↓

get

//獲取廣告圖
  call.getRequest({
   url:'GetAd',
   success:(res)=>{   //箭頭函數沒有指針問題
    this.setData({
     urlItem: res.data
    })
   }
  })

post

call.postRequest({
   url: 'addorder',
   data: {
    shop_id: that.data.shop_id,
    user_id: app.globalData.user_id,
    coupon_sn: that.data.coupon_sn,
    carType: that.data.car_type,
    appointtime: that.data.toTime
   },
   success:(res)=>{
    console.log(res)
    wx.navigateTo({
     url: '../selectPay/selectPay?order_sn=' + res.data.order_sn + '&fee=' + res.data.real_pay + "&order_id=" + res.data.order_id,
    })
   }
  })

4.搜索input中,如何點擊搜索按鈕進行搜索及按鈕樣式修改

正常我們會在搜索框中加入一個搜索按鈕,點擊進行搜索,但是小程序不是操作dom的,所以是無法直接獲取到input中的值,所以要通過另外的方法進行搜索。

(1)通過input組件中的bindconfirm屬性(confirm-type="search" 可將軟鍵盤的完成按鈕改為“搜索”)

<input class='search_input' type='text' confirm-type='search' bindconfirm='toSearch' ></input>
//js部分
toSearch(e){
 console.log(e.detail.value) //e.detail.value 為input框輸入的值
}

(2)利用form表單的提交,來完成點擊按鈕的提交(input需要添加name屬性)

搜索按鈕

微信小程序開發技巧匯總

利用button代替form的表單提交(form-type="submit"),注意用view不行,必須用button

需要自己修改button的默認樣式(button的邊框要在button::after中修改)

//wxml部分
<form bindsubmit="formSubmit" bindreset="formReset">
 <input class='search_input' type='text' confirm-type='search' name="search" bindconfirm='toSearch' >
 <button class='search_btn' form-type='submit'>搜索</button></input>
</form>
//js部分
formSubmit(e){
 console.log(e.detail.value.search) //為輸入框的值,input記得添加name屬性
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鹤岗市| 昌邑市| 诸城市| 荣昌县| 陇西县| 玉田县| 濉溪县| 缙云县| 汽车| 武定县| 蓬莱市| 沅江市| 乌鲁木齐县| 达孜县| 渝北区| 东台市| 东乌珠穆沁旗| 教育| 鹤庆县| 吕梁市| 安顺市| 阳泉市| 青浦区| 广安市| 班玛县| 瑞金市| 安达市| 泸州市| 宜君县| 留坝县| 遵义县| 靖州| 博客| 双江| 富平县| 红原县| 旬阳县| 云林县| 宽城| 金门县| 盘锦市|