vue websocket nodeJS 進行實時通訊踩到的坑

雜亂無章-Jessues發表於2018-04-11


先說明,我並不知道出現坑的原因是什麼。我只是按照別人的寫法就連上了。

我的處境是這樣的

我的前臺是用了 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 開發),但是我還是覺得有幾個點要注意的:

  1. 關於 Express 4 和 其他版本中,socketio 的寫法不同,少了一個 http 模組。所以我認為是出現這種情況的主要原因
  2. 注意跨域的寫法。四行程式碼,最好能夠儲存下來。
  3. 如果是本地測試的,需要注意 IP 問題。如果是 localhost 的,請前後端一直;如果是 127.0.0.1,請前後端一致。

相關文章