gpt4 book ai didi

reactjs - transform-react-jsx 中的 "pragma h"是什么?

转载 作者:行者123 更新时间:2023-12-05 08:54:14 25 4
gpt4 key购买 nike

我在这里遇到了这个配置https://github.com/developit/zero-to-preact/blob/master/webpack.config.js

plugins: [
['transform-react-jsx', { pragma: 'h' }]
]

文档说

pragma

string, defaults to React.createElement.

Replace the function used when compiling JSX expressions.

Note that the @jsx React.DOM pragma has been deprecated as of React v0.12

但不知道“h”是什么意思!这是什么?

最佳答案

默认情况下,babel 等将转换 <div id="hello" />React.createElement("div", { id: "hello" }); . pragma: h将生成为 h("div", { id: "hello" }); .

React.createElement , (或 Preact 的 h)是构建虚拟 DOM 的函数。

关于reactjs - transform-react-jsx 中的 "pragma h"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50629526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com