没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
需求:vue中,除了在模板中使用过滤器,有时候,methods中也需要使用filters中的过滤器, 网友hongz1125提出的解决办法: this.$options.filters[filter](...args) //这种方法很简单,也很实用 下面是我的方法,有点复杂。建议使用上面网友说的方法。 filters: { formatScore(score) { if (score < 20 score = '不合格'>= 20 && score <= 27) { score =
资源推荐
资源详情
资源评论
在在Vue methods中调用中调用filters里的过滤器实例里的过滤器实例
需求:需求:vue中,除了在模板中使用过滤器,有时候,methods中也需要使用filters中的过滤器,
网友网友hongz1125提出的解决办法:提出的解决办法:
this.$options.filters[filter](...args) //这种方法很简单,也很实用
下面是我的方法,有点复杂。建议使用上面网友说的方法。
filters: {
formatScore(score) {
if (score < 20) {
score = '不合格';
} else if (score >= 20 && score <= 27) {
score = '合格';
} else if (score >= 28 && score <= 31) {
score = '良好';
} else if (score > 31) {
score = '优秀';
}
return score
}
},
methods: {
formatScore(score) {
if (score < 20) {
score = '不合格';
} else if (score >= 20 && score <= 27) {
score = '合格';
} else if (score >= 28 && score <= 31) {
score = '良好';
} else if (score > 31) {
score = '优秀';
}
return score
},
getPhysicalResult() {
this.$http.get('/rc_ChildTest/testResult').then((res) => {
this.isDisplayIcon = this.formatScore(score参数);//使用过滤器方法,需要单独写一个一模一样的方法。通过this调用
})
},
},
解决方法:解决方法:
1.建立一个公共的建立一个公共的report.js文件,提取封装公共文件,提取封装公共js
export default {
formatScore(score) {
if (score < 20) {
score = '不合格';
} else if (score >= 20 && score <= 27) {
score = '合格';
} else if (score >= 28 && score <= 31) {
score = '良好';
} else if (score > 31) {
score = '优秀';
}
return score
},
}
2.导入导入report.js 并使用并使用
import report from 'js文件所在位置'
filters: {
formatScore(score) {
return report.formatScore(score);//使用导入的report.js中的report.formatScore方法
}
},
methods: {
getPhysicalResult() {
weixin_38673548
- 粉丝: 3
- 资源: 948
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页