我想在下一个 js 中从 JSON 加载特定数据后加载脚本
我想在 HTML 中加载 data.post.content 后加载 Script 标签。
基本上,我想在 HTML 中运行 MathJax.js 脚本。
我的代码:
return (
<div>
<h1>{data.post.title}</h1>
<p dangerouslySetInnerHTML={{ __html: data.post.content }}></p>
<Script type="text/javascript" src="https://www.hostmath.com/Math/MathJax.js?config=OK" strategy="afterInteractive"/>
</div>
);
如果我重新加载页面,我的脚本就可以工作
I want to load Script tag after data.post.content is loaded inside HTML.
Basically, I want to run the MathJax.js script inside HTML.
My code:
return (
<div>
<h1>{data.post.title}</h1>
<p dangerouslySetInnerHTML={{ __html: data.post.content }}></p>
<Script type="text/javascript" src="https://www.hostmath.com/Math/MathJax.js?config=OK" strategy="afterInteractive"/>
</div>
);
My Script is working if I reload the page
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题是您正在使用客户端渲染填充
Script
(服务器端渲染很好,因为数据已经加载到服务器上)。您可以尝试这种方式来修复(下面的代码片段),但是通过这种方式,您需要在 UI 重新渲染的状态中设置
data.post.content
The problem here is you're populating
Script
with client-side rendering (server-side rendering is good because data is loaded already on the server).You can try this way to fix (below snippet), but with this way, you need to set
data.post.content
in states for UI re-rendering