下面是我的代码是为bot框架编写的,我参考了git hub中的文档,以及大量文章和堆栈溢出的帖子,似乎在WebChat行显示bot时抛出了错误。聊天,这也是stackoverlfow中的帖子中的link:
declare var require: any
var React = require('react');
var ReactDOM = require('react-dom');
var DirectLine = require('botframework-directlinejs');
//import * as WebChat from 'botframework-webchat';
var WebChat = require('botframework-webchat');
export class Hello extends React.Component {
constructor() {
super();
this.state = { data: [] };
this.variableValue = { dataValue: [] };
}
async componentDidMount() {
const response = await fetch('https://directline.botframework.com/v3/directline/tokens/generate', {
method: 'POST',
headers: {
'Authorization': 'Bearer secretvalue',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
accessLevel: 'View',
allowSaveAs: 'false',
})
});
// const { token } = await res.json();
const { token } = await response.json();
console.log(token);
this.setState({ data: token });
//
}
render() {
const {
state: { data }
} = this
return (
//<div>
// <p>Hello there1</p>
// <ul>
// {data}
// </ul>
//</div>
<WebChat.Chat
directLine={{
data,
webSocket: false
}}
style={{
height: '100%',
width: '100%'
}}
//user={{
// id: 'default-user',
// name: 'Some User'
//}}
/>
);
}
}
ReactDOM.render(<Hello />, document.getElementById('root'));
我能够通过Rest调用获取令牌,但是在使用WebChat.Chat directLine
来显示机器人时出现错误
错误如下:
编辑 我能够使用react和babel在html文件中运行代码,下面是代码。...
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Web Chat: Integrate with React</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
For simplicity and code clarity, we are using Babel and React from unpkg.com.
-->
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://unpkg.com/react@16.5.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.5.0/umd/react-dom.development.js"></script>
<!--
For demonstration purposes, we are using the development branch of Web Chat at "/master/webchat.js".
When you are using Web Chat for production, you should use the latest stable release at "/latest/webchat.js",
or lock down on a specific version with the following format: "/4.1.0/webchat.js".
-->
<script src="https://cdn.botframework.com/botframework-webchat/master/webchat.js"></script>
<style>
html, body { height: 100% }
body { margin: 0 }
#webchat {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="webchat" role="main"></div>
<script type="text/babel">
(async function () {
// In this demo, we are using Direct Line token from MockBot.
// To talk to your bot, you should use the token exchanged using your Direct Line secret.
// You should never put the Direct Line secret in the browser or client app.
// https://docs.microsoft.com/en-us/azure/bot-service/rest-api/bot-framework-rest-direct-line-3-0-authentication
const headers = {"Authorization": "Bearer rngzqJ7rkng.cwA.A8k.xg_Jb-NbNs4Kq8O2CcF-vnNxy8nlCMPMPYaXL0oROr0"}
const body = {"accessLevel": "View"}
//const res = await fetch('https://directline.botframework.com/v3/directline/tokens/generate', { method: 'POST' }, {Headers:headers},{Body:body});
//const res = await fetch('https://webchat-mockbot.azurewebsites.net/directline/token', { method: 'POST' });
const res = await fetch('https://directline.botframework.com/v3/directline/tokens/generate', {
method: 'POST',
headers: {
'Authorization': 'Bearer secretvalue',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
accessLevel: 'View',
allowSaveAs: 'false',
})
});
const { token } = await res.json();
const { ReactWebChat } = window.WebChat;
window.ReactDOM.render(
<ReactWebChat directLine={ window.WebChat.createDirectLine({ token }) } />,
document.getElementById('webchat')
);
document.querySelector('#webchat > *').focus();
})().catch(err => console.error(err));
</script>
</body>
</html>
但是当我在节点js应用程序中使用它时,在使用WebCHat.Chat时遇到了问题。
答案 0 :(得分:3)
Web聊天有两个版本-v3和v4。您引用的StackOverflow问题是使用Web Chat v3,而您使用的依赖项是v4。请查看下面的代码片段,以了解带有Node的Web Chat v4实现的外观。
import React from 'react';
import ReactWebChat, { createDirectLine } from 'botframework-webchat';
export default class extends React.Component {
constructor(props) {
super(props);
this.state = {
directLine: null
};
}
componentDidMount() {
this.fetchToken();
}
async fetchToken() {
const res = await fetch('https://webchat-mockbot.azurewebsites.net/directline/token', { method: 'POST' });
const { token } = await res.json();
this.setState(() => ({
directLine: createDirectLine({ token })
}));
}
render() {
return (
this.state.directLine ?
<ReactWebChat
className="chat"
directLine={ this.state.directLine }
/>
:
<div>Connecting to bot…</div>
);
}
}
有关更多详细信息,请查看GitHub Repo上的samples-示例17是查看Node实现的好例子。