我想在React.js组件中显示并突出显示一些“JSON”数据。
它可以工作,但问题是当组件刷新时,突出显示的代码会消失。
我想澄清一下我是个新手。
谢谢你的支持。
import React from "react";
import hljs from "highlight.js";
import "highlight.js/styles/github.css";
import json from "highlight.js/lib/languages/json";
hljs.registerLanguage("json", json);
hljs.initHighlightingOnLoad();
const JsonViewer = props => {
return (
<pre>
<code className="json">
{JSON.stringify(props.content, null, 2)}
</code>
</pre>
);
};
export default JsonViewer;
1条答案
按热度按时间j0pj023g1#
从我所看到的函数调用
hljs.initHighlightingOnLoad();
是激活高亮显示的函数,如果你使用钩子调用useEffect
中的函数,或者如果你使用类调用componentDidMount
和componentDidUpdate
中的函数。