本篇内容介绍了“Vue中的Mustache插值语法、v-bind指令怎么使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
一、Mustache插值语法
⭐⭐mustache 语法: 是"胡子"的意思, 据说是因为嵌入标记像胡子 {{}}(我觉得一点也不像哎O(∩_∩)O哈哈~)
把数据显示到模板(template)中,使用最多的语法是 “Mustache”语法 (双大括号) 的文本插值
data返回的对象是有添加到Vue的响应式系统中。
当data中的数据发生改变时,对应的内容也会发生更新。
Mustache中不仅仅可以是data中的属性,也可以是一个JavaScript的表达式。
⭐⭐
我们可以写:
值
表达式
三元表达式
调用methods中函数
<div id="app"> <h3>{{message}}</h3> <h3>当前计数:{{counter}}</h3> <!-- 2.表达式 --> <h3>计数双倍:{{counter*2}}</h3> <h3>展示的信息:{{info.split(" ")}}</h3> <!-- 3.三元表达式 --> <h3>{{age>=18?"成年人" : "未成年人"}}</h3> <!-- 4.调用methods中函数 --> <h3>{{formatDate(time)}}</h3></div>
二、v-bind的绑定属性
2.1.v-bind绑定基本属性
⭐⭐
单向绑定v-bind:数据只能从data流向页面
绑定属性我们可以使用v-bind,比如动态绑定a元素的href属性、img元素的src属性
v-bind用于
绑定一个或多个属性值
向另一个组件传递props值**(props:相当于一个组件的输入,后面会学习到的)
v-bind:href 可以写为 :href 这就是v-bind的语法糖
<div id="app"> <!-- 1.绑定img的src属性 --> <button @click="switchImage">切换图片</button> <img v-bind:src="showImgUrl" alt="" /> <!--语法糖 v-bind: = : --> <!-- 2.绑定a的href属性 --> <a v-bind:href="href">百度一下</a> </div>
2.2.v-bind绑定class
⭐⭐
1、基本绑定class
<h3 :class="classes">Hello World</h3>
2、动态class可以写对象语法
<button :class="isActive ? 'active':''" @click="btnClick">我是按钮</button>
3、对象语法的基本使用
<button :class="{active:isActive}" @click="btnclick">我是按钮</button>
4、对象语法的多个键值对,动态绑定的class是可以和普通的class同时的使用
我们可以给v-bind:class一个对象,用以动态的切换class
当然,v-bind:class也是可以与普通的class特性共存
<button class="abc cba" :class="getDynamicClasses" @click="btnClick">我是按钮</button>
2.3.v-bind绑定style
⭐⭐
1、普通的html写法
<h3 style="color: aqua; font-size: 30px">hhh</h3>
2、style中的某些值,来自data中
动态绑定style,在后面跟上对象类型
<h3 v-bind:style="{color:fontColor,fontSize:fontSize}">hhhh</h3>
3、动态的绑定属性,这个属性是一个对象
<h3 :style="objStyle">hhhhh</h3>
2.4.v-bind绑定属性名
⭐⭐绑定data中的属性名
在属性名不是固定的情况下使用:[属性名]=“值”
<div id="app"> <h3 :[name]="aaaa">Hello World</h3> </div> <script src="../lib/vue.js"></script> <script> const app = Vue.createApp({ data: function () { return { name: "class", }; }, }); app.mount("#app");
2.5.v-bind直接绑定对象
⭐⭐传入一个对象,对象来自于data,一个对象的所有属性,绑定到元素上的所有属性
<div id="app"> <h3 :name="name" :age="age" :height="height">Hello world</h3> <--直接绑定一个对象,一步到位--> <h3 v-bind="infos"></h3> </div> <script src="../lib/vue.js"></script> <script> const app = Vue.createApp({ data: function () { return { infos: { name: "kk", age: 18, height: 1.7 }, name: "kk", age: 18, height: 1.7, }; }, }); app.mount("#app");
“Vue中的Mustache插值语法、v-bind指令怎么使用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!