我不了解lit
Web 组件架构中的反应性概念。从其他框架中,我假设以下示例将毫无问题地更新,但它不适用于lit
.
我可以看到子组件render
方法仅在最初被调用,而不是在我单击按钮后再次被调用。但即使我通过 手动调用它Web Components DevTools
,它也不会以新状态重新渲染。
我必须改变什么才能让它工作?
父组件:
import {LitElement, html} from 'lit';
import {customElement, property} from 'lit/decorators.js';
import './show-planets';
@customElement('lit-app')
export class LitApp extends LitElement {
addPlanet() {
this.planetsParent.push('Pluto')
console.log('this.planetsParent', this.planetsParent)
}
@property({type: Array}) planetsParent = ['Mars'];
render() {
return html`
<button @click="${this.addPlanet}">click</button>
<show-planets .planetsChild="${this.planetsParent}"></show-planets>
`;
}
}
子组件:
import {LitElement, html} from 'lit';
import {customElement, property} from 'lit/decorators.js';
@customElement('show-planets')
export class ShowPlanets extends LitElement {
@property({type: Array}) planetsChild = ['Pluto'];
render() {
console.log('this.planetsChild', this.planetsChild);
return html`<h1>Planets are: ${this.planetsChild}</h1>`;
}
}