微信小程序 傳值取值的方法總結

微信小程序 傳值取值的幾種方法總結

  1. 列表index下標取值
  2. 頁面傳值
  3. form表單取值

1. 列表index下標取值

實現方式是:data-index="{{index}}"挖坑及e.currentTarget.dataset.index來填坑便可ajax

1.1 生成值

<image src="../../../images/icon_delete.png" /><text>刪除</text>
  • 在刪除圖標與文字添加data-index="{{index}}"自定義屬性以及綁定點擊事件bindtap="delete"
<view data-index="{{index}}" bindtap="delete"><image src="../../../images/icon_delete.png" /><text>刪除</text></view>
  • 實現delete方法
delete: function (e) {
  var index = parseInt(e.currentTarget.dataset.index);
  console.log("index" + index);
}

備註:若是不使用e.currentTarget而使用e.target會怎樣?
將會致使僅點中<view>才能輸出index值,點子元素<image>或<text>將輸出NaN。小程序

那target有什麼用呢,用於區分子元素與外部元素要分別處理時,好比換用戶頭像的場景,點擊頭像自己預覽大圖,而頭像所在的點整一行,將是切換頭像。微信小程序

### 1. 2 取出值 以地址列表爲例微信

試圖從index數據中找出相應元素刪除地址佈局

// 找到當前地址AVObject對象 
var address = that.data.addressObjects[index]; // 給出確認提示框 
wx.showModal
 ({
   title: '確認', content: '要刪除這個地址嗎?',
   success: function (res) {
     if (res.confirm) { // 真正刪除對象 address.destroy().then(function (success) 
       { // 刪除成功提示 
         wx.showToast({ title: '刪除成功', icon: 'success', duration: 2000 }); // 從新加載數據 that.loadData(); }, function (error) { }); 
       }
     }
   })

2. 頁面傳值

從收貨地址列表頁中傳地址id到編輯頁面,以讀取原地址供修改之用
address/list頁面實現如下代碼this

<view class="container" data-index="{{index}}" bindtap="edit">
<image src="../../../images/icon_edit.png" />
<text>編輯</text>
</view> edit: function (e) 
{ var that = this; // 取得下標 
ar index = parseInt(e.currentTarget.dataset.index); // 取出id值 
var objectId = this.data.addressObjects[index].get('objectId'); wx.navigateTo({ url: '../add/add?objectId='+objectId 
}); 
}

address/add頁面實現onLoad(options)方法,從url路徑中獲取objectIdurl

onLoad: function (options) {
  var objectId = options.objectId
}

3. form表單取值

3.1 方式一,經過.net

<form bindsubmit="formSubmit">與<button formType="submit">

標籤配合使用code

  • 佈局以下
<form bindsubmit="formSubmit"> 
<input name="detail" placeholder="詳情地址" /> 
<input name="realname" placeholder="收件人姓名" /> 
<input name="mobile" placeholder="手機號碼" type="number"/> <button formType="submit" type="primary">Submit</button> 
</form>

js取值orm

formSubmit: function(e) { // detail var detail = e.detail.value.detail; // realname var realname = e.detail.value.realname; // mobile var mobile = e.detail.value.mobile; }

3.2 方式二
經過

<input bindconfirm="realnameConfirm">

實現:

// 實現相應多個**Confirm方式 detailConfirm: function(e) { var detail = e.detail.value; } 
realnameConfirm: function(e) { var realname = e.detail.value; } 
mobileConfirm: function(e) 
{ var mobile = e.detail.value; }

經過方式一與方式二的對比能夠看出,雖然一樣都能實現取值的目標,可是它們的使用場景有所不一樣,前者適合與提交大量表單項時,好比用戶完善我的資料,收貨地址填寫;然後者適合只作一兩個表單項時,好比快遞單號錄入,綁定手機號碼。
若是須要相似ajax即時響應的,應該選用後者,由於input能使用

<input bindinput="bindInput" />

來實現即時取到值,好比商品搜索框輸入手機關鍵字,應出現iPhone7,Mate8等候選詞這樣的場景。

原文連接

相關文章
相關標籤/搜索