This time I will bring you a detailed explanation of Vue two-way data binding examples. What are the precautions for Vue two-way data binding? The following is a practical case, let's take a look.
Concept Description
v-model directive: Creates two-way data binding on form control elements. v-model will automatically choose the correct method to update the element based on the control type.
Input box
The example demonstrates the use of v-model in the input and textarea elements to achieve bidirectionality Data binding:
HTML
nbsp;html> <meta> <title>Vue双向数据绑定实例详解</title> <script></script> <p> </p><p>input 元素:</p> <input> <p>消息是: {{ message }}</p> <p>textarea 元素:</p> <p>{{ message2 }}</p> <textarea></textarea> <script> new Vue({ el: '#app', data: { message: 'Runoob', message2: '菜鸟教程\r\nhttp://www.runoob.com' } }) </script>
The effect is as shown in the figure:
Complex Check box
If the check box is a single one, it is a logical value. If there are multiple check boxes, it is bound to the same array:
HTML
nbsp;html> <meta> <title>Vue 测试实例 - 菜鸟教程(runoob.com)</title> <script></script> <p> </p><p>单个复选框:</p> <input> <label>{{ checked }}</label> <p>多个复选框:</p> <input> <label>Runoob</label> <input> <label>Google</label> <input> <label>taobao</label> <br> <span>选择的值为: {{ checkedNames }}</span> <script> new Vue({ el: '#app', data: { checked : false, checkedNames: [] } }) </script>
The effect is as shown:
Radio button
##HTML
nbsp;html> <meta> <title>Vue 测试实例</title> <script></script> <p> <input> <label>Runoob</label> <br> <input> <label>Google</label> <br> <span>选中值为: {{ picked }}</span> </p> <script> new Vue({ el: '#app', data: { picked : 'Runoob' } }) </script>The effect is as shown:
drop-down list
HTML
nbsp;html> <meta> <title>Vue 测试实例 - 菜鸟教程(runoob.com)</title> <script></script> <p> <select> <option>选择一个网站</option> <option>Runoob</option> <option>Google</option> </select> </p><p> 选择的网站是: {{selected}} </p> <script> new Vue({ el: '#app', data: { selected: '' } }) </script>The effect is as shown:
##Modifier.lazy
By default, v-model synchronizes the value and data of the input box in the input event, but you can add a modifier lazy to switch to synchronization in the change event:
<!-- 在 "change" 而不是 "input" 事件中更新 --> <input>
.number
If you want to automatically convert the user's input value to the Number type (if the conversion result of the original value is NaN, the original value will be returned), you can add a modifier number to v-model To handle input values:
<input>
This is often useful because input values in HTML will always be returned as string types when type="number".
.trim
If you want to automatically filter the leading and trailing spaces input by the user, you can add the trim modifier to v-model to filter the input:
<input>
I believe you have mastered it after reading the case in this article. Method, for more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
Using Koa2 to implement file upload and downloadConvert the html string to HTML tags and useThe above is the detailed content of Detailed explanation of Vue two-way data binding examples. For more information, please follow other related articles on the PHP Chinese website!

VueUse 是 Anthony Fu 的一个开源项目,它为 Vue 开发人员提供了大量适用于 Vue 2 和 Vue 3 的基本 Composition API 实用程序函数。本篇文章就来给大家分享几个我常用的几个 VueUse 最佳组合,希望对大家有所帮助!

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章给大家整理分享8个GitHub上很棒的的 Vue 项目,都是非常棒的项目,希望当中有您想要收藏的那一个。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何使用VueRouter4.x?下面本篇文章就来给大家分享快速上手教程,介绍一下10分钟快速上手VueRouter4.x的方法,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 English version
Recommended: Win version, supports code prompts!

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools
