vue 中 filters 如何获取data里的数据
1,声明一个全局变量let that;2,在生命周期beforeCreate里面改变this指向beforeCreate: function () {that = this;},filters: {ifsex(val) {return IFSEX[val]},...
·
1,声明一个全局变量
let that;
2,在生命周期 beforeCreate里面改变this指向
beforeCreate: function () {
that = this;
},
filters: {
ifsex(val) {
return IFSEX[val]
},
formatDate(value) {
return formatDate(value, 'yyyy-MM-dd')
},
caseType(value) {
if (that.caseTypeArr.find(i => {
return i.dictValue == value
})) {
return that.caseTypeArr.find(i => {
return i.dictValue == value
}).dictName
}
}
},
更多推荐
已为社区贡献18条内容
所有评论(0)