ReactJS Chatkit 未定义
ReactJS Chatkit is not defined
我在此处找到的教程中取得了一些进步:
https://www.youtube.com/watch?v=6vcIW0CO07k
但是我卡在了 19 分钟左右。
基本上,本教程是使用 React 和 Chatkit 构建一个 Instant Messenger 应用程序。
我正在使用以下代码收到一条 "Failed to comile" 消息,该消息是一个名为 Chatscreen.js:
的文件
import React from 'react'
import ChatKit from '@pusher/chatkit'
class ChatScreen extends React.Component {
componentDidMount () {
const chatManager = new Chatkit.ChatManager({
instanceLocator: 'v1:us1:5802c885-ab9d-409b-aa98-5dbcfc69efd1',
userId: this.props.currentUsername,
tokenProvider: new ChatKit.tokenProvider({
url: 'http://localhost:3001/authenticate'
})
})
chatManager
.connect()
.then(currentUser => console.log('currentUser', currentUser))
.catch(error => console.error(error))
}
render() {
return (
<div>
<h1>Chat</h1>
<p>Hello, {this.props.currentUsername}</p>
</div>
)
}
}
export default ChatScreen
错误信息如下:
Failed to compile.
./src/ChatScreen.js
Line 6: 'Chatkit' is not defined no-undef
这是我的 github 存储库的 link。为什么我会收到此错误消息?
我看了他们的文档之后。我认为你最好以这种方式导入它。
import { TokenProvider } from "@pusher/chatkit-client-react"
我认为问题是版本不同。你看的VDO是去年的,他们的包装可能有一些变化。
仅供参考:https://pusher.com/docs/chatkit/getting_started/react#adding-a-token-provider-to-your-app
我在此处找到的教程中取得了一些进步:
https://www.youtube.com/watch?v=6vcIW0CO07k
但是我卡在了 19 分钟左右。
基本上,本教程是使用 React 和 Chatkit 构建一个 Instant Messenger 应用程序。
我正在使用以下代码收到一条 "Failed to comile" 消息,该消息是一个名为 Chatscreen.js:
的文件import React from 'react'
import ChatKit from '@pusher/chatkit'
class ChatScreen extends React.Component {
componentDidMount () {
const chatManager = new Chatkit.ChatManager({
instanceLocator: 'v1:us1:5802c885-ab9d-409b-aa98-5dbcfc69efd1',
userId: this.props.currentUsername,
tokenProvider: new ChatKit.tokenProvider({
url: 'http://localhost:3001/authenticate'
})
})
chatManager
.connect()
.then(currentUser => console.log('currentUser', currentUser))
.catch(error => console.error(error))
}
render() {
return (
<div>
<h1>Chat</h1>
<p>Hello, {this.props.currentUsername}</p>
</div>
)
}
}
export default ChatScreen
错误信息如下:
Failed to compile.
./src/ChatScreen.js
Line 6: 'Chatkit' is not defined no-undef
这是我的 github 存储库的 link。为什么我会收到此错误消息?
我看了他们的文档之后。我认为你最好以这种方式导入它。
import { TokenProvider } from "@pusher/chatkit-client-react"
我认为问题是版本不同。你看的VDO是去年的,他们的包装可能有一些变化。
仅供参考:https://pusher.com/docs/chatkit/getting_started/react#adding-a-token-provider-to-your-app