基础用法
可以用 v-model 指令在表单控件元素上创建双向数据绑定。根据控件类型它自动选取正确的方法更新元素。尽管有点神奇,v-model 不过是语法糖,在用户输入事件中更新数据,以及特别处理一些极端例子。
text
<span>message is: {{ message }}</span>
<br>
<input type="text" v-model="message" placeholder="edit me">
checkbox
单个勾选框,逻辑值:
<input type="checkbox" id="checkbox" v-model="checked">
<label for="checkbox">{{ checked }}</label>
多个勾选框,绑定到同一个数组:
<input type="checkbox" id="jack" value="jack" v-model="checkednames">
<label for="jack">jack</label>
<input type="checkbox" id="john" value="john" v-model="checkednames">
<label for="john">john</label>
<input type="checkbox" id="mike" value="mike" v-model="checkednames">
<label for="mike">mike</label>
<br>
<span>checked names: {{ checkednames | json }}</span>
new vue({
el: '...',
data: {
checkednames: []
}
})
radio
<input type="radio" id="one" value="one" v-model="picked">
<label for="one">one</label>
<br>
<input type="radio" id="two" value="two" v-model="picked">
<label for="two">two</label>
<br>
<span>picked: {{ picked }}</span>
select
单选:
<select v-model="selected">
<option selected>a</option>
<option>b</option>
<option>c</option>
</select>
<span>selected: {{ selected }}</span>
多选(绑定到一个数组):
<select v-model="selected" multiple>
<option selected>a</option>
<option>b</option>
<option>c</option>
</select>
<br>
<span>selected: {{ selected | json }}</span>
动态选项,用 v-for 渲染:
<select v-model="selected">
<option v-for="option in options" v-bind:value="option.value">
{{ option.text }}
</option>
</select>
<span>selected: {{ selected }}</span>
new vue({
el: '...',
data: {
selected: 'a',
options: [
{ text: 'one', value: 'a' },
{ text: 'two', value: 'b' },
{ text: 'three', value: 'c' }
]
}
})
绑定 value
对于单选按钮,勾选框及选择框选项,v-model 绑定的 value 通常是静态字符串(对于勾选框是逻辑值):
<!-- 当选中时,`picked` 为字符串 "a" -->
<input type="radio" v-model="picked" value="a">
<!-- `toggle` 为 true 或 false -->
<input type="checkbox" v-model="toggle">
<!-- 当选中时,`selected` 为字符串 "abc" -->
<select v-model="selected">
<option value="abc">abc</option>
</select>
但是有时我们想绑定 value 到 vue 实例的一个动态属性上,这时可以用 v-bind 实现,并且这个属性的值可以不是字符串。
checkbox
<input
type="checkbox"
v-model="toggle"
v-bind:true-value="a"
v-bind:false-value="b">
// 当选中时
vm.toggle === vm.a
// 当没有选中时
vm.toggle === vm.b
radio
<input type="radio" v-model="pick" v-bind:value="a">
// 当选中时
vm.pick === vm.a
select options
<select v-model="selected">
<!-- 对象字面量 -->
<option v-bind:value="{ number: 123 }">123</option>
</select>
// 当选中时
typeof vm.selected // -> 'object'
vm.selected.number // -> 123
参数特性
lazy
在默认情况下,v-model 在input 事件中同步输入框值与数据,可以添加一个特性 lazy,从而改到在 change 事件中同步:
7044210f6e39cacc936db994cdca0984
c9e7edd44a50d6030fffc65a2d0e687f
number
如果想自动将用户的输入转为 number 类型(如果原值的转换结果为 nan 则返回原值),可以添加一个特性 number:
355c05fd93eaaf93a4a42b9ed41602cf
debounce
debounce 设置一个最小的延时,在每次敲击之后延时同步输入框的值与数据。如果每次更新都要进行高耗操作(例如在输入提示中 ajax 请求),它较为有用。
a245763c423ab1b383b70bbf67d8a457
注意 debounce 参数不会延迟 input 事件:它延迟“写入”底层数据。因此在使用 debounce 时应当用 vm.$watch() 响应数据的变化。若想延迟dom 事件,应当使用 debounce 过滤器。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多。
更多vue.js每天必学之表单控件绑定。