FileSqlServerSync/Tool/webtool/src/connect.js
ZhaoLei fa64f0c6d5 fix&feat: c# 上传文件存在最大限制。消息优化和更改,现在减少用户使用时的担心,它更加人性化
```csharp
// 使用默认的Kestrel  服务器部署,将默认限制最大文件的上传,使用这个取消限制
 [DisableRequestSizeLimit]
 [HttpPost("/UploadFile")]
 public async Task<IActionResult> UploadFile(IFormFile file)
 {

```
2024-10-29 18:08:34 +08:00

51 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class ConnectPipe {
#websocket;
//在这里打断点可能会导致debug错误然后浏览器打不开页面 这是为啥?
constructor() {
//Id,Msgtype,callback
// this.#websocket = new WebSocket(`ws://${window.location.host}`)
}
OpenPipe(config, MsgCb) {
// var webSocUrl = `ws://${window.location.host}/websoc?Name=${config.Name}`
var webSocUrl = "ws://127.0.0.1:6818/websoc?Name=Test";
this.#websocket = new WebSocket(webSocUrl);
this.#websocket.onopen = (event) => {
var starter = {
Body: JSON.stringify(config),
Type: 1,
Step: 1,
};
// console.warn("websocket connected!");
this.#websocket.send(JSON.stringify(starter));
};
this.#websocket.onmessage = (event) => {
// console.log(event.data);
MsgCb(JSON.parse(event.data))
};
this.#websocket.onclose = (event) => {
console.warn(event)
MsgCb({
Type: 0,
Step: 8,
Body:event.reason
})
};
this.#websocket.onerror = (e) => {
console.error(e);
MsgCb({
Type: 0,
Body: "异常错误,查看 Console",
Step: 7,
});
};
}
ClosePipe() {
this.#websocket.close();
}
}
export default ConnectPipe;