(无法传递值)
<X class:list={['some-css-class']} />
(传递数组)模板指令永远不会直接包含在组件的最终 HTML 输出中。
class:list
class:list={...}
接收 class 数组,并将其转换为 class 字符串。这是受流行的 @lukeed clsx 辅助库的启发。
class:list
接收数组,其中有几种不同的可能值:
string
:添加到 class
元素Object
:添加到键值对到 class
元素Array
:扁平化false
, null
, or undefined
: skipped<!-- 原先 -->
<span class:list={[ 'hello goodbye', { world: true }, [ 'friend' ] ]} />
<!-- 输出 -->
<span class="hello goodbye world friend"></span>
set:html
set:html={string}
将 HTML 字符串注入元素中,类似于设置 el.innerHTML
。
该值不会被 Astro 自动转义!请确保你信任该值,或者在传递给模板前对其进行手动转义。忘记这样做可能会使你受到跨网站脚本(XSS)攻击。
---
const rawHTMLString = "Hello <strong>World</strong>"
---
<h1>{rawHTMLString}</h1>
<!-- 输出:<h1>Hello <strong>World</strong></h1> -->
<h1 set:html={rawHTMLString} />
<!-- 输出:<h1>Hello <strong>World</strong></h1> -->
你也可以在 <Fragment>
上使用 set:html
来避免添加不必要的封装元素。这在从 CMS 获取 HTML 时特别有用。
---
const cmsContent = await fetchHTMLFromMyCMS();
---
<Fragment set:html={cmsContent}>
set:html={Promise<string>}
将封装在 Promise 中的 HTML 字符串注入到元素中。
这可用于注入存储在外部的 HTML,例如在数据库中。
---
import api from '../db/api.js';
---
<article set:html={api.getArticle(Astro.props.id)}></article>
set:html={Promise<Response>}
将一个Response 响应注入到元素中。
这在使用 fetch()
时最有用。 例如,从以前的静态站点生成器中获取旧的文章。
<article set:html={fetch('http://example/old-posts/making-soup.html')}></article>
set:html
可以用在任何标签上,不必包含 HTML。例如,在 <script>
标签上使用 JSON.stringify()
将 JSON-LD 模式添加到你的页面。
<script type="application/ld+json" set:html={JSON.stringify({
"@context": "https://schema.org/",
"@type": "Person",
name: "Houston",
hasOccupation: {
"@type": "Occupation",
name: "Astronaut"
}
})}/>
查看 客户端脚本 如何在 Astro 组件中工作。define:vars
define:vars={...}
可以将服务器端的变量从组件 frontmatter 传递给客户端的 <script>
或 <style>
标签。支持任何 JSON 可序列化的 frontmatter 变量,包括通过 Astro.props
传递给组件的 props
。值可以使用 JSON.stringify()
进行序列化。
---
const foregroundColor = "rgb(221 243 228)";
const backgroundColor = "rgb(24 121 78)";
const message = "Astro is awesome!";
---
<style define:vars={{ textColor: foregroundColor, backgroundColor }}>
h1 {
background-color: var(--backgroundColor);
color: var(--textColor);
}
</style>
<script define:vars={{ message }}>
alert(message);
</script>
is:raw
is:raw
会让 Astro 编译器将该元素的任何子项都视为文本。这意味着该组件中所有特殊的 Astro 模板语法都不会生效。
例如,如果你有一个自定义的 Katex 组件,它将一些文本转换为 HTML,你可以这样做:
---
import Katex from '../components/Katex.astro';
---
<Katex is:raw>Some conflicting {syntax} here</Katex>
Reference由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论