作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 1,2,3 数组,我循环渲染段落。问题是,每当我向数组添加类似 4 的内容时,它不会出现在屏幕上,但日志显示数字 4 已成功添加。我该怎么做?我使用的是lit-element 2.0.0(版本非常重要,this.requestUpdate()在这里不起作用,但在2.3.1中起作用)这是代码:
class XApp extends LitElement {
static get properties() {
return {
items:{
type:Array,
}
}
}
constructor() {
super();
this.items = [1,2,3];
}
firstUpdated(changedProperties) {
if (super.firstUpdated) {
super.firstUpdated(changedProperties);
}
const list = document.querySelector(".list");
list.addEventListener("click", e => {
console.log(e.target);
'Origin: ', event.composedPath()[0];
})
}
render() {
return html`
<ul class="list" @click="${(e) => console.log(e.currentTarget)}">
<li class="item">Wash dishes</li>
<li class="item">Walk your dog</li>
</ul>
<div
<slot></slot>
${this.items.map(item => html`<p>${item}</p>`)}
</div>
<button @click="${this.change}">Change</button>
`;
}
change(e){
console.log("Try Change");
this.items.unshift(4);
console.log(this.items);
}
}
最佳答案
您需要this.requestUpdate更新函数中的状态
change(e){
console.log("Try Change");
this.items.unshift(4);
console.log(this.items);
this.requestUpdate();
}
您可以在这里查看stackblitz ,希望有帮助
关于javascript - 如何将数组上的更改反射(reflect)到 lit-element 中渲染的 html 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60842652/
我是一名优秀的程序员,十分优秀!