這篇文章給大家介紹怎么在Angular項(xiàng)目中利用socket.io實(shí)現(xiàn)一個(gè)通信功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
在終端輸入以下命令為我們的angular項(xiàng)目安裝express、socket.io、socket.io-client
npm install express socket.io socket.io-client
本人安裝的各版本信息如下:
"express": "^4.17.1", "socket.io": "^3.0.4", "socket.io-client": "^3.0.4",
可以在項(xiàng)目中新建一個(gè)server文件夾,用來存放我們的后臺(tái)服務(wù),然后新建文件
const app = require('express')(); const http = require('http').createServer(app); const io = require('socket.io')(http, { cors: { // 處理跨域問題 origin: "http://localhost:4300", // angular項(xiàng)目的啟動(dòng)端口,默認(rèn)4200,本人項(xiàng)目的啟動(dòng)端口為4300,大家根據(jù)自己情況修改 methods: ["GET", "POST"], credentials: true } }); io.on('connection', (socket) => { console.log('user connected'); socket.on('add-message', (message) => { io.emit('message', {type: 'new-message', text: message}); }); }) http.listen(4000, () => { // 后臺(tái)服務(wù)啟動(dòng)端口 console.log('start on 4000....'); })
import { Injectable } from '@angular/core'; import { Observable, Subject } from 'rxjs'; import { io } from 'socket.io-client'; @Injectable() export class ChatService { private url = 'http://localhost:4000'; // 后臺(tái)服務(wù)端口 private socket: any; sendMessage(message: any) { this.socket.emit('add-message', message); } getMessages(): Observable<any> { return new Observable(observer => { this.socket = io(this.url, {withCredentials: true}); this.socket.on('message', (data) => { observer.next(data); }); return () => { this.socket.disconnect(); } }) } }
這里我們創(chuàng)建了兩個(gè)方法,sendMessage用于將客戶端的信息發(fā)送給服務(wù)端,getMessages用于建立連接,監(jiān)聽服務(wù)端事件并返回一個(gè)可觀察的對(duì)象。
import { Component, OnInit, OnDestroy } from '@angular/core'; import { ChatService } from './chat.service'; @Component({ selector: 'test-chat', template: `<div *ngFor="let message of messages"> {{message.text}} </div> <input [(ngModel)]="message" /> <button (click)="sendMessage()">Send</button>`, providers: [ChatService] // 注入依賴 }) export class TestChatComponent implements OnInit, OnDestroy { messages = []; connection: any; message: any; constructor(private chatService: ChatService) { } sendMessage() { this.chatService.sendMessage(this.message); this.message = ''; } ngOnInit() { this.connection = this.chatService.getMessages() .subscribe(message => { // 組件初始化時(shí)訂閱信息 this.messages.push(message); }); } ngOnDestroy() { this.connection.unsubscribe(); // 組件銷毀取消訂閱 } }
這樣一個(gè)簡(jiǎn)單的socket通信就完成了,效果圖如下:
啟動(dòng)服務(wù)
前端頁面
如果遇到跨域問題,大概率是沒有處理跨域,檢查自己的代碼和端口號(hào)是否正確,詳情參考handing-cors
另外,如果遇到(本人遇到了,愣是在網(wǎng)上找了半天依然未果)
POST http://localhost:4000/socket.io/?EIO=3&transport=polling&t=NQtz_E3 400 (Bad Request)
這類的報(bào)錯(cuò),npm安裝socket.io-client(這也是為什么我在文章一開始就安裝它),在service.ts文件引入
import { io } from 'socket.io-client';
在網(wǎng)上看到很多人是這樣寫的 import * as io from ‘socket.io-client',這種寫法在typescript中是會(huì)報(bào)錯(cuò)的,改成上面的寫法即可。
關(guān)于怎么在Angular項(xiàng)目中利用socket.io實(shí)現(xiàn)一個(gè)通信功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。