外部lit-html模板文件

时间:2019-03-18 19:20:54

标签: javascript html template-literals lit-html

是否可以将lit-html模板(模板字符串)存储在外部文件中并在JS中即时读取/解析?还是在定义过程中需要变量范围?

template.html

<div>Hello ${firstName}</div>
<div>
  Today is:
  <strong>${date}</strong>
</div>

app.js

const template = (firstName, date) => {
  // read file
  const fileContents = fetch('template.html').then(...)
  ...
}

0 个答案:

没有答案