gpt4 book ai didi

reactjs - 如何在我的 React 应用程序中添加 Intercom 脚本?

转载 作者:行者123 更新时间:2023-12-03 13:35:34 25 4
gpt4 key购买 nike

我正在使用 redux-segment 进行分析,并尝试实现 Intercom。我遇到的问题实际上是让它加载等。我正在尝试遵循此操作,但仍然不确定在哪里输入应用程序 ID 等。 Intercom segment 。我想在抓取当前用户时在我的 Action 创建器中加载对讲机,但没有关于如何实际加载对讲机的文档。

import { EventTypes } from 'redux-segment';

export function currentUser() {

const request = user.current(); //this correctly grabs current user.

if(request == null) {
//having trouble with this part. load intercom non user specific
} else {
load intercom user specific
}

return {
type: CURRENT_USER,
payload: request
};
}

最佳答案

您想要做的是将加载对讲机的脚本放入您的index.html 或您的入口组件中以加载其分析对象。 From their docs你可以像这样初始化它

class MyComponent extends Component {
constructor(props){
super(props);
window.Intercom('boot', {
app_id: INTERCOM_APP_ID,
// other settings you'd like to use to initialize Intercom
});
}
....
}

关于reactjs - 如何在我的 React 应用程序中添加 Intercom 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42382809/

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