首页 > 其他分享 >uni-app属性值的动态绑定

uni-app属性值的动态绑定

时间:2022-09-27 14:12:30浏览次数:50  
标签:src 01 bind app 绑定 instead uni imgeSrc 属性

1.问题
使用传统的方法给标签的属性动态绑定数据报错。

2.错误重现
2.1 错误代码

<image src="{{imgeSrc}}"></image> 

2.2 错误信息

Module Error (from ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js):
10:01:33.690 (Emitted value instead of an instance of Error)
10:01:33.703 Errors compiling template:
10:01:33.704 src="{{imgeSrc}}": Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. For example, instead of <div id="{{ val }}">, use <div :id="val">. 

2.3 错误原因
因为vue 2.x不支持对属性使用插值{{}}的方式赋值,所以要使用v-bind指令(或简写“:”)来指定属性。

3.解决方案(以image标签讲解)

  • v-bind指令

  v-bind:src="imgeSrc"

<image v-bind:src="imgeSrc"></image>

  

  • v-bind简写指令:

  :src="imgeSrc"

<image :src="imgeSrc"></image>

 

 

标签:src,01,bind,app,绑定,instead,uni,imgeSrc,属性
From: https://www.cnblogs.com/891288436xiaoyu/p/16734348.html

相关文章