小程序裏常見的取值有以下幾種,一個完整的項目寫下來,用到的概率幾乎是100%。

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

1. 列表index下標取值

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

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方法,取到index下標值。

微信小程序中使用globaldata_頁面傳值

delete: function (e) {
	var index = parseInt(e.currentTarget.dataset.index);
	console.log("index" + index);
}

如果不使用e.currentTarget而使用e.target會怎樣?

將會導致僅點中<view>才能輸出index值,點子元素<image>或<text>將輸出NaN。

微信小程序中使用globaldata_頁面傳值_02

那target有什麼用呢,用於區分子元素與外部元素要分別處理時,比如換用户頭像的場景,點擊頭像本身預覽大圖,而頭像所在的點整一行,將是切換頭像。

微信小程序中使用globaldata_微信小程序中使用globaldata_03

關於二者區別的詳情説明,請見文檔:https://mp.weixin.qq.com/debug/wxadoc/dev/framework/view/wxml/event.html

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頁面實現以下代碼

<view class="container" data-index="{{index}}" bindtap="edit"><image src="../../../images/icon_edit.png" /><text>編輯</text></view>

edit: function (e) {
	var that = this;
	// 取得下標
	var 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路徑中獲取objectId

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

然後就是訪問網絡以及渲染頁面了。

微信小程序中使用globaldata_頁面傳值_04

3. form表單取值

3.1 方式一,通過<form bindsubmit="formSubmit">與<button formType="submit">標籤配合使用

佈局如下:

<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取值:

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

文檔出處:https://mp.weixin.qq.com/debug/wxadoc/dev/component/form.html

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等候選詞這樣的場景。

文檔出處:https://mp.weixin.qq.com/debug/wxadoc/dev/component/input.html

小結:

列表index下標取值,頁面傳值,form表單傳值,第1種無時無刻在用,第2種也很常用,只是小程序頁面一般會較少,我現在這個項目也就是12個page,第3種相對用得少些,因為手機端畢竟不是生產力工具,用在註冊頁,評論頁等。

源碼下載:,本文涉及代碼存於/pages/address/list文件夾中。