html Helper
html Helper
允许你使用名为 html
的标签在 JavaScript 模板字面量中编写 HTML。使用 raw()
,内容将按原样渲染。 你必须自行转义这些字符串。
导入
ts
import { Hono } from 'hono'
import { html, raw } from 'hono/html'
html
ts
const app = new Hono()
app.get('/:username', (c) => {
const { username } = c.req.param()
return c.html(
html`<!doctype html>
<h1>你好! ${username}!</h1>`
)
})
将代码片段插入到 JSX 中
将内联脚本插入到 JSX 中:
tsx
app.get('/', (c) => {
return c.html(
<html>
<head>
<title>测试站点</title>
{html`
<script>
// 无需使用 dangerouslySetInnerHTML。
// 如果你在这里编写,它将不会被转义。
</script>
`}
</head>
<body>你好!</body>
</html>
)
})
充当函数式组件
由于 html
返回 HtmlEscapedString
,它可以充当完全函数式的组件,而无需使用 JSX。
使用 html
加速处理,而不是 memo
typescript
const Footer = () => html`
<footer>
<address>我的地址...</address>
</footer>
`
接收 props 并嵌入值
typescript
interface SiteData {
title: string
description: string
image: string
children?: any
}
const Layout = (props: SiteData) => html`
<html>
<head>
<meta charset="UTF-8">
<title>${props.title}</title>
<meta name="description" content="${props.description}">
<head prefix="og: http://ogp.me/ns#">
<meta property="og:type" content="article">
<!-- 更多的元素会减慢 JSX 的速度,但不会减慢模板字面量的速度。 -->
<meta property="og:title" content="${props.title}">
<meta property="og:image" content="${props.image}">
</head>
<body>
${props.children}
</body>
</html>
`
const Content = (props: { siteData: SiteData; name: string }) => (
<Layout {...props.siteData}>
<h1>你好 {props.name}</h1>
</Layout>
)
app.get('/', (c) => {
const props = {
name: 'World',
siteData: {
title: 'Hello <> World',
description: '这是一个描述',
image: 'https://example.com/image.png',
},
}
return c.html(<Content {...props} />)
})
raw()
ts
app.get('/', (c) => {
const name = 'John "Johnny" Smith'
return c.html(html`<p>我是 ${raw(name)}。</p>`)
})
提示
感谢这些库,Visual Studio Code 和 vim 也将模板字面量解释为 HTML,从而允许应用语法高亮和格式化。