我有一个简单的发光元素,其属性具有hasChanged
功能。
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<script type="module">
import {LitElement, html} from 'https://unpkg.com/@polymer/lit-element@0.7.0/lit-element.js?module';
class MyElement extends LitElement {
static get properties() {
return {
mood: {
type: String,
hasChanged: function(value, oldValue) {
console.log(oldValue, " -> ", value);
return BOOLEAN; // <== replace with true or false
}
}
};
}
constructor() {
super();
this.mood = 'default';
}
render() {
return html`${this.mood}`;
}
}
customElements.define('my-element', MyElement);
</script>
<my-element mood="explicit"></my-element>
</body>
</html>
对于显示的结果,是否替换BOOLEAN
为true
或都没有关系false
。两者都显示explicit
。
但是日志输出不同:
- 你只得到
true
一行:
undefined -> default
- 你会得到
false
两行:
undefined -> default
default -> explicit
' false
' 日志输出是我所期望的。使用 lit-element 直到 0.6.5 您也可以通过返回来获得相同的两行true
。
这是 lit-element 0.7.0 中引入的错误还是新行为有效?如果它是有效的,为什么没有通过true
从第一个调用返回来完成第二个调用。