跳到主要內容

發表文章

目前顯示的是 8月, 2025的文章

Lit 元件強制刷新 Lit Web Component forced refresh

    @state() forceUpdate: boolean = false;     render() {         if (this.forceUpdate) {             return nothing;         }     }     /** 強制刷新 by mowei */     async forceRequestUpdate() {         this.forceUpdate = true;         this.requestUpdate();         await this.updateComplete;         this.forceUpdate = false;     }