0

请检查 plunker

static get template() {
   return html`
     <p>This content is from ChildClass.</p>
     <p>${super.template}</p>
     <p>Hello again from ChildClass.</p>
     <p style='color:red'>[[partHtml]] <==== this should be 'hello'</p>
     `;  
 }
 get partHtml()
 {
   return "<span>hello</span>";
 }

我想像partHtml普通 HTML 一样被注入到模板中。

我知道 lit-element 中的不安全 HTML 可以做到这一点,但是 lit-element 不能使用super.render()东西,它不像聚合物元素那样方便。

4

3 回答 3

2

如何使用inner-h-t-m-l属性

static get template() {
   return html`
     <p>This content is from ChildClass.</p>
     <p>${super.template}</p>
     <p>Hello again from ChildClass.</p>
     <p style='color:red' inner-h-t-m-l="[[partHtml]]"></p>
     `;  
 }
 get partHtml()
 {
   return "<span>hello</span>";
 }
于 2018-08-10T07:50:34.627 回答
1

您可以使用多行字符串

static get template() {
  return html`
   <p>This content is from ChildClass.</p>
   <p>${super.template}</p>
   <p>Hello again from ChildClass.</p>
   <p style='color:red'>${this.partHtml}</p>
 `;  
}
static get partHtml() {
  return html`<span>hello</span>`;
}

在 Plnkr 上测试

于 2018-08-10T12:02:44.990 回答
0

终于在调试到调用栈的时候找到了答案。就用htmlLiteral吧,关键代码喜欢这样

import {PolymerElement, html} from 'https://unpkg.com/@polymer/polymer@3.0.5/polymer-element.js'
import {htmlLiteral} from 'https://unpkg.com/@polymer/polymer@3.0.5/lib/utils/html-tag.js'

....

  static get template() {
      return html`<p style='color:red'>${this.partHtml} <==== this should be 'hello'</p>`;  
  }
  static get partHtml()
  {
    return htmlLiteral `<span>hello</span>` ;
  }
于 2018-08-16T11:37:24.750 回答