作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
@computedFrom(['id', 'isDiscontinued'])
get disableAdd(){
return this.id === '0' || this.isDiscontinued;
}
这会引发以下错误:aurelia-binding.js:2580 Uncaught TypeError: this.input.charCodeAt is not a function
然而这有效:
@computedFrom('id')
get disableAdd(){
return this.id === '0' || this.isDiscontinued;
}
但是我需要两个 computedFrom 字段,我做错了什么?
最佳答案
@computedFrom('id', 'isDiscontinued')
get disableAdd(){
return this.id === '0' || this.isDiscontinued;
}
不需要[]
关于aurelia - 如何在 Aurelia 中使用具有多个属性的 computedFrom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37879568/
我有一个 state 对象,它有一个属性 session,这个属性可以是一个 object 或 null. 我不想对 isSessionActive() getter 进行脏检查,所以我想使用 com
我有以下代码: @computedFrom(['id', 'isDiscontinued']) get disableAdd(){ return this.id === '0' || this
我是一名优秀的程序员,十分优秀!