Trustpilot TrustBoxes in Next.js(Next.js中的TrustPilot信任箱)
本文介绍了Next.js中的TrustPilot信任箱的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将TrustPilot Trustbox添加到Next.js应用。
我的组件中有这个Didmount:
var trustbox = document.getElementById('trustbox');
window.Trustpilot.loadFromElement(trustbox);
我脑海中的这个:
<script type="text/javascript" src="Ly93aWRnZXQudHJ1c3RwaWxvdC5jb20vYm9vdHN0cmFwL3Y1L3RwLndpZGdldC5ib290c3RyYXAubWluLmpz" async></script>
在我的html中:
<div id="trustbox" className="trustpilot-widget" data-locale="en-GB" data-template-id="XX" data-businessunit-id="XX" data-style-height="130px" data-style-width="100%" data-theme="light" data-stars="5" data-schema-type="Organization">
<a href="https://uk.trustpilot.com/review/XX" target="_blank">Trustpilot</a>
</div>
这在热重新加载时可以很好地工作。例如,如果我在服务器运行时添加代码。但是o刷新重新加载它会损坏,并且我得到以下错误:
无法读取未定义的属性"loadFromElement"
有什么想法吗?
推荐答案
算出来了。您需要ComponentDidmount中的以下代码来确保首先加载外部js。
componentDidMount() {
var aScript = document.createElement('script');
aScript.type = 'text/javascript';
aScript.src = "Ly93aWRnZXQudHJ1c3RwaWxvdC5jb20vYm9vdHN0cmFwL3Y1L3RwLndpZGdldC5ib290c3RyYXAubWluLmpz";
aScript.async = "true"
document.head.appendChild(aScript);
aScript.onload = function () {
var trustbox = document.getElementById('trustbox');
window.Trustpilot.loadFromElement(trustbox);
};
}
希望这能帮助任何坚持做同样事情的人。
这篇关于Next.js中的TrustPilot信任箱的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Next.js中的TrustPilot信任箱
猜你喜欢
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01