使用 templates and slots - Web Components 编辑
这篇文章阐述了如何使用 <template>
和 <slot>
元素创建一个可以用来灵活填充 Web组件的 shadow DOM 的模板。
关于模板 (Templates)
当您必须在网页上重复使用相同的标记结构时,使用某种模板而不是一遍又一遍地重复相同的结构是有意义的。以前这是可行的,但HTML <template>
元素使它更容易实现(这在现代浏览器中得到了很好的支持)。 此元素及其内容不会在DOM中呈现,但仍可使用JavaScript去引用它。
让我们看一个简单的示例:
<template id="my-paragraph">
<p>My paragraph</p>
</template>
上面的代码不会展示在你的页面中,直到你用 JavaScript 获取它的引用,然后添加到DOM中, 如下面的代码:
let template = document.getElementById('my-paragraph');
let templateContent = template.content;
document.body.appendChild(templateContent);
虽然是个简单的例子,但您已经可以开始了解它是多么的有用了。
在Web Components中使用模板
模板(Templates) 本身就是有用的, 而与 web 组件(web component) 一起使用效果更好。我们定义一个 web 组件使用模板作为阴影(shadow) DOM 的内容,叫它 <my-paragraph>
:
customElements.define('my-paragraph',
class extends HTMLElement {
constructor() {
super();
let template = document.getElementById('my-paragraph');
let templateContent = template.content;
const shadowRoot = this.attachShadow({mode: 'open'})
.appendChild(templateContent.cloneNode(true));
}
})
要注意的关键是我们使用Node.cloneNode()
方法添加了模板的拷贝到阴影的根结点上。
因为我们添加了模板的内容到 shadow DOM, 所以我们可以加入一些样式信息到模板的 <style>
标签里,这些样式信息稍后会封装到自定义的元素中。如果只给它添加到一个标准的DOM中是不起作用的。
比如:
<template id="my-paragraph">
<style>
p {
color: white;
background-color: #666;
padding: 5px;
}
</style>
<p>My paragraph</p>
</template>
现在我们将它添加自己的 HTML 文档中试试看:
<my-paragraph></my-paragraph>
Note: 模板在浏览器中的支持情况很好, Firefox(版本63及以上),Chrome,Opera ,Edge(版本79及以上) 和 Safari 支持 Shadow DOM
使用槽(slots) 添加灵活度
尽管到这一步已经挺好了,但是元素仍旧不是很灵活. 我们只能在里面放一点文本, 甚至没有普通的 p 标签管用!我们使用 <slot>
让它能在单个实例中通过声明式的语法展示不同的文本。浏览器对这个功能的支持比<template>
少,在Chrome 53, Opera 40, Safari 10, 火狐 59 和 Edge 79中支持。
插槽由其name
属性标识,并且允许您在模板中定义占位符,当在标记中使用该元素时,该占位符可以填充所需的任何HTML标记片段。
如果你想添加一个槽到我们的这个例子,我们会将模板的 p 标签改成下面这样:
<p><slot name="my-text">My default text</slot></p>
如果在标记中包含元素时未定义相关的插槽内容,或者浏览器不支持slot属性,则<my-paragraph>
仅包含后备内容"My default text"。(译者注:此处的意思是使用<my-paragraph>时内部不包裹任何内容时会显示slot 定义好的默认值。具体使用可参考下面)
要定义插槽内容,我们在<my-paragraph>
元素内包括一个HTML结构,该结构具有slot
属性,其值等于我们要填充的<slot>
的name属性的值。 和以前一样,它可以是您喜欢的任何东西,例如:
<my-paragraph>
<span slot="my-text">Let's have some different text!</span>
</my-paragraph>
或者
<my-paragraph>
<ul slot="my-text">
<li>Let's have some different text!</li>
<li>In a list!</li>
</ul>
</my-paragraph>
以上为例。
Note: 将能被插入到槽中的元素视为 Slotable
; 称已经插入到槽中的元素为 slotted.
这就我们普通的例子,你想更深入了解你可以 在GitHub上查看 (也可以看 在线运行)。
更深入的例子
为了更好的结束这篇文章,我们来个看一些不寻常的例子。
下面的一组代码段展示了我们如何联合使用 <slot>
和 <template>
以及一些 JavaScript 去完成:
- 使用 命名的槽(named slots) 在 阴影(shadow root) 创建一个
<element-details>
元素。 - 将
<element-details>
元素设计成在文档中使用时, 它将它的 shadow root 中的内容和该元素内部的内容糅合在一起 —也就是元素内容中的片断被填充到元素的 阴影(shadow root) 的 命名的槽(named slots) 中。
注意,技术上来讲没有<template>
使用 <slot>
也是可以的。例如, <slot>
在一个常规的<div>
标签里,仍然有占位符的特性,就像在 shadow DOM 中一样,这样我们能避免需要先获取模板对象的 content
属性再使用它的麻烦。然而这个特性在向一个 <template>
元素中添加槽时更加实用, 因为你不会基于一个渲染的元素定义一个模式。
另外,就算它还没有渲染,使用<template>
时,作为模板的容器应该语义上应当干净。而且 <template>
可以直接挂一些对象,如 <td>
,当加到一个 <div>
中时会隐藏。
Note: 查看在完整的例子在 element-details ( 在线运行 ).
使用槽(slot) 创建一个模板
首先,我们在<template>
使用 <slot>
标签创建一个"element-details-template"包含一些 命名的槽(named slot) 的 文档片段(document fragment)
<template id="element-details-template">
<style>
details {font-family: "Open Sans Light",Helvetica,Arial}
.name {font-weight: bold; color: #217ac0; font-size: 120%}
h4 { margin: 10px 0 -8px 0; }
h4 span { background: #217ac0; padding: 2px 6px 2px 6px }
h4 span { border: 1px solid #cee9f9; border-radius: 4px }
h4 span { color: white }
.attributes { margin-left: 22px; font-size: 90% }
.attributes p { margin-left: 16px; font-style: italic }
</style>
<details>
<summary>
<span>
<code class="name"><<slot name="element-name">NEED NAME</slot>></code>
<i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
</span>
</summary>
<div class="attributes">
<h4><span>Attributes</span></h4>
<slot name="attributes"><p>None</p></slot>
</div>
</details>
<hr>
</template>
上面这个<template>
有几个特征:
<template>
标签有一个<style>
标签,里面有一些 只能在当前<template>
的派生中生效的 CSS 样式<template>
用<slot>
和它的name
属性生成一个 命名的槽(named slots):<slot name="element-name">
<slot name="description">
<slot name="attributes">
<template>
包裹 命名的槽(named slots) 在<details>
元素中。
从<template> 中创建一个新的 <element-details> 对象
接下来,我们定义一个新的 <element-details>
元素然后用 Element.attachShadow
来将它附着到它的 阴影(shadow) root, 这个阴影上我们创建了 <template>
元素。这和我们上面使用的简单例子中的一样。
customElements.define('element-details',
class extends HTMLElement {
constructor() {
super();
var template = document
.getElementById('element-details-template')
.content;
const shadowRoot = this.attachShadow({mode: 'open'})
.appendChild(template.cloneNode(true));
}
})
结合命名的 slots 使用自定义元素 <element-details>
现在让我们正式在文档流中使用<element-details>标签:
<element-details>
<span slot="element-name">slot</span>
<span slot="description">A placeholder inside a web
component that users can fill with their own markup,
with the effect of composing different DOM trees
together.</span>
<dl slot="attributes">
<dt>name</dt>
<dd>The name of the slot.</dd>
</dl>
</element-details>
<element-details>
<span slot="element-name">template</span>
<span slot="description">A mechanism for holding client-
side content that is not to be rendered when a page is
loaded but may subsequently be instantiated during
runtime using JavaScript.</span>
</element-details>
关于以上代码片段,请注意以下几点:
- 该代码片段有2个
<element-details>
标签,他们都使用了“slot”属性来引用名为"element-name"
和"description"
的槽,并把他们都放在根下。 - 只有第一个
<element-details>
元素 引用了名为"attributes"
的槽,而第二个<element-details>
标签没有引用名为"attributes"
的槽。 - 只有第一个
<element-details>
标签中的"dl"使用了名为"attributes"
的槽,他包含子元素:"dt"和"dd"元素。
添加一些最终的样式
在完成之前,我们在文档中给"dl"和"dt"以及"dd"标签增加一些CSS样式。
dl { margin-left: 6px; }
dt { font-weight: bold; color: #217ac0; font-size: 110% }
dt { font-family: Consolas, "Liberation Mono", Courier }
dd { margin-left: 16px }
body { margin-top: 47px }
结果
最后,让我们所有的代码片段结合在一起,看看渲染的结果是什么样的。
Screenshot | Live sample |
---|---|
关于结果请注意以下几点:
- 即使
<element-details>
标签并没有直接使用"details"
标签元素,但是在渲染的时候使用了"details"
标签,是因为shadow root使得他们被填充。 - 在渲染出来的
"details"
标签,<element-details>
标签从根开始填充了相应的命名的槽。换言之,<element-details>
的DOM树和shadow root的内容结合在了一起。 - 对于这两个
<element-details>
标签,属性标题会自动的从shadow root中添加到名为"attribute"
的插槽的前面。 - 因为第一个
<element-details>
标签的"dl"
元素就明确的引用了名为"attributes"
的插槽,所以该"dl"
元素的内容将会替换该标签中名为"attributes"
的插槽。 - 因为第二个
<element-details>
标签没有引用名为"attributes"
的槽,所以标签内名为"attributes"的
插槽的内容将会使用模板中默认的内容。
full example
<!DOCTYPE html>
<html>
<head>
<title>slot example</title>
<style>
dl { margin-left: 6px; }
dt { font-weight: bold; color: #217ac0; font-size: 110% }
dt { font-family: Consolas, "Liberation Mono", Courier }
dd { margin-left: 16px }
</style>
</head>
<body>
<template id="element-details-template">
<style>
details {font-family: "Open Sans Light",Helvetica,Arial}
.name {font-weight: bold; color: #217ac0; font-size: 120%}
h4 { margin: 10px 0 -8px 0; }
h4 span { background: #217ac0; padding: 2px 6px 2px 6px }
h4 span { border: 1px solid #cee9f9; border-radius: 4px }
h4 span { color: white }
.attributes { margin-left: 22px; font-size: 90% }
.attributes p { margin-left: 16px; font-style: italic }
</style>
<details>
<summary>
<span>
<code class="name"><<slot name="element-name">NEED NAME</slot>></code>
<i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
</span>
</summary>
<div class="attributes">
<h4><span>Attributes</span></h4>
<slot name="attributes"><p>None</p></slot>
</div>
</details>
<hr>
</template>
<element-details>
<span slot="element-name">slot</span>
<span slot="description">A placeholder inside a web
component that users can fill with their own markup,
with the effect of composing different DOM trees
together.</span>
<dl slot="attributes">
<dt>name</dt>
<dd>The name of the slot.</dd>
</dl>
</element-details>
<element-details>
<span slot="element-name">template</span>
<span slot="description">A mechanism for holding client-
side content that is not to be rendered when a page is
loaded but may subsequently be instantiated during
runtime using JavaScript.</span>
</element-details>
<script>
customElements.define('element-details',
class extends HTMLElement {
constructor() {
super();
const template = document
.getElementById('element-details-template')
.content;
const shadowRoot = this.attachShadow({mode: 'open'})
.appendChild(template.cloneNode(true));
}
})
</script>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论