vue websocket nodeJS 進行實時通訊踩到的坑
先說明,我並不知道出現坑的原因是什麼。我只是按照別人的寫法就連上了。
我的處境是這樣的
我的前臺是用了 vue 全家桶,啟動了一個 9527 埠。
而我的後臺是用 nodeJS,啟動了 8081 埠。
很明顯,這種情況就出現了頭疼的跨域。
貼出我的程式碼,如下
server.js(後臺)
var app = express();
var server = require('http').createServer(app);
var io = require('socket.io')(server);
io.sockets.on('connection', (socket) => {
console.log('123')
});
main.js(前臺)
import VueSocketio from 'vue-socket.io'
import socketio from 'socket.io-client'
Vue.use(VueSocketio, socketio('http://localhost:8081'), store)
然後根據網上的寫法,我在後端對跨域進行了處理
app.all('*',function (req, res, next) {
res.header('Access-Control-Allow-Origin', 'http://localhost:9527');
res.header('Access-Control-Allow-Headers', 'X-Token, Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild');
res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
if (req.method == 'OPTIONS') {
res.send(200); /*讓options請求快速返回*/
}
else {
next();
}
});
滿心歡喜的重啟前臺看下有沒有臉上。
結果出現了一下錯誤
Failed to load http://localhost:8081/socket.io/?EIO=3&transport=polling&t=MAqqfjf: The value of the 'Access-Control-Allow-Credentials' header in the response is '' which must be 'true' when the request's credentials mode is 'include'. Origin 'http://localhost:9527' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.
這個錯誤。。我看得出是是 “Access-Control-Allow-Credentials” 的問題。所以我又改了後臺的跨域程式碼
app.all('*',function (req, res, next) {
res.header('Access-Control-Allow-Origin', 'http://localhost:9527');
res.header('Access-Control-Allow-Headers', 'X-Token, Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild');
res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
res.header('Access-Control-Allow-Credentials','true'); // 新增
if (req.method == 'OPTIONS') {
res.send(200); /*讓options請求快速返回*/
}
else {
next();
}
});
更改過後,我又滿心歡喜的跑去前臺,一看
結果就一直報錯:
GET http://localhost:8081/socket.io/?EIO=3&transport=polling&t=MAqp7zN 404 (Not Found)
GET http://localhost:8081/socket.io/?EIO=3&transport=polling&t=MAqp7zN 404 (Not Found)
報錯了這個是 404 。
百度了很久, 各種關鍵字都搞不了。最後去 google 了。結果讓我找到了答案:
看了上面這個答案,我翻查了一下,正好我也是用 express4 的。所以我就按照他的說法去改。結果如下。
正確的寫法
後端
var server = app.listen(8081);
var io = require('socket.io').listen(server);
io.sockets.on('connection', (socket) => {
console.log('123')
});
前端的寫法不變。
思考點
雖然我不知道背後發生了什麼事(因為是趕專案,趕鴨子上架寫 node 和 vue 的,本人是 Java 開發),但是我還是覺得有幾個點要注意的:
- 關於 Express 4 和 其他版本中,socketio 的寫法不同,少了一個 http 模組。所以我認為是出現這種情況的主要原因
- 注意跨域的寫法。四行程式碼,最好能夠儲存下來。
- 如果是本地測試的,需要注意 IP 問題。如果是 localhost 的,請前後端一直;如果是 127.0.0.1,請前後端一致。
相關文章
- Uniapp 使用 GoEasy 實現 websocket 實時通訊APPGoWeb
- 在vue中使用SockJS實現webSocket通訊VueJSWeb
- 在Spring Boot中實現WebSocket實時通訊Spring BootWeb
- laravel整合workerman實現websocket多端及時通訊LaravelWeb
- ThreadLocal可能踩到的坑thread
- (精華2020年5月21日更新) vue實戰篇 實時通訊websocket的封裝結合vue的使用VueWeb封裝
- Java Websocket實現即時通訊功能入門教程JavaWeb
- angular + express 實現websocket通訊AngularExpressWeb
- 使用Java實現WebSocket通訊JavaWeb
- WebSocket通訊Web
- WebRTC + WebSocket 實現視訊通話Web
- WebSocket實現前後端通訊Web後端
- TradingView + WebSocket 實時推送 K 線脫坑指南ViewWeb
- Vue 中利用 eventBus 進行資料通訊的問題Vue
- websocket通訊原理Web
- websocket+node實現一個最簡單的即時通訊功能Web
- java WebSocket 即時通訊配置使用說明JavaWeb
- 簡單的Java實現Netty進行通訊JavaNetty
- NodeJS實現websocket代理機制NodeJSWeb
- Spring Boot 開發整合 WebSocket,實現私有即時通訊系統Spring BootWeb
- 全雙工通訊的 WebSocketWeb
- websocket 建立連線時如何進行授權?Web
- 基於WebSocket的modbus通訊(三)- websocket和串列埠Web串列埠
- 行業分析| OA系統中的實時通訊行業
- 通過串列埠進行通訊 :串列埠
- 使用SuperSocket的FixedHeaderReceiveFilter進行通訊HeaderFilter
- 聊聊快取布林值踩到的坑快取
- MyBatis if 標籤的坑,居然被我踩到了。。。MyBatis
- golang寫的即時通訊伺服器gim,支援TCP,WebSocketGolang伺服器TCPWeb
- 雙向通訊之websocketWeb
- 一文探究web實時通訊方案並深入websocket原理與應用Web
- Android小知識-利用OkHttp實現WebSocket通訊AndroidHTTPWeb
- 基於WebSocket的實時訊息傳遞設計Web
- 採用管道進行通訊的例子
- 總結開發過程踩到的坑(一)
- 基於 ThinkJS 的 WebSocket 通訊詳解JSWeb
- Tcp, WebSocket 和 http 之間的通訊TCPWebHTTP
- Vue 元件的通訊Vue元件