使用SockJS 報錯 Incompatibile SockJS! Main site uses: “1.0.3“, the iframe: “1.0.0“. 已處理
1.聊天室使用SockJS 報錯 Incompatibile SockJS! Main site uses: “1.0.3”, the iframe: “1.0.0”.
遇到這個情況首先看下專案是否配置了NGINX,如果配置需要修改代理:
location /websocket/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
proxy_pass http://127.0.0.1:9999;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 60;
proxy_read_timeout 600;
proxy_send_timeout 600;
}
9999為專案埠
相關文章
- sockjs-node/info?t=1462183700002 報錯解決方案JS
- 在vue中使用SockJS實現webSocket通訊VueJSWeb
- SpringBoot+sockjs client+stompjs實現websocketSpring BootJSclientWeb
- 報錯:Uncaught ReferenceError: SockJS is not defined at gomoku.js:1:16 crack.js:1 enable_copy_cracked:falseErrorJSGoFalse
- 使用 clearError 清除已處理的錯誤Error
- iframe高度處理
- AS執行main()方法報錯:SourceSet with name ‘main‘ not foundAI
- Gulp壓縮報錯處理
- rails gem報錯的處理AI
- Mysql自動處理同步報錯MySql
- Python 入門級報錯處理Python
- Too many open files報錯處理
- 在使用 zabbix 4 時, orabbix 會報錯的處理方法
- [譯] 使用 Catcher 處理 Flutter 錯誤Flutter
- pytest.main () 為什麼會報錯?AI
- ORACLE GoldenGate 使用技巧-容錯處理等OracleGo
- 錯誤處理
- Java報錯:Exception in thread "main" java.lang.UnsupportedClassVersionErrorJavaExceptionthreadAIError
- Oracle 12c ORA-29548 報錯處理Oracle
- ora-04045和ora-16000報錯處理
- Rman報錯ORA-00234: ORA-00202處理
- Python錯誤處理Python
- PHP 錯誤處理PHP
- php錯誤處理PHP
- Go 錯誤處理Go
- 錯誤處理:如何通過 error、deferred、panic 等處理錯誤?Error
- 在vue使用異常處理做錯誤提示Vue
- Vue init webpack xxxx project 報錯處理(connect ETIMEDOUT 192.30.253.112)VueWebProject
- 線上MYSQL同步報錯故障處理方法總結MySql
- exp匯出報錯EXP-00106問題處理
- oceanbase 安裝叢集 install OB rpm報錯處理
- DBeaver同時執行多條insert into報錯處理
- linux裡面yum安裝軟體報錯處理Linux
- RAT(Oracle Real Application Testing)時ORA 600報錯處理OracleAPP
- ogg複製程式報ORA-01438錯誤處理
- TiDB DM同步報錯ErrCode 44006處理一例TiDB
- Python錯誤處理和異常處理(二)Python
- 小白:關於處理“can't find '__main__' module in ”這個問題的詳細處理方式!AI