Angular与服务器通讯
angular与服务器通讯
一.创建web服务器
1.使用nodejs创建服务器
创建一个server文件夹
初始化server文件夹npm init -y,创建package.json
引入node的类型定义文件npm i @types/node --save,类型定义文件的作用:让开发者在typescript中使用现在已有的javascript的库(安装类型定义文件是保证对应内容可以使用typescript进行开发)
搭建简单的web服务器
创建server文件夹,并创建hello_server.ts,内容填写
import * as http from 'http'; const server = http.createserver((request,response)=>{ response.end('hello node'); }); server.listen(8000);
通过webstrom的自动编译将ts转换成js,如下
"use strict"; object.defineproperty(exports, "__esmodule", { value: true }); var http = require("http"); var server = http.createserver(function (request, response) { response.end('hello node'); }); server.listen(8000);
使用node hello_server.js启动服务器,访问8000端口就可以看到页面显示hello node
2.使用express创建restful的http服务
安装express框架,npm install express --save
安装express的类型定义文件npm install @types/express --save
创建服务器配置文件aution_server.ts
内容如下import * as express from 'express'; const app = express();//app用来声明服务器端可以使用的服务 app.get('/',(req,res)=>{ res.send('hello express'); });//声明用来处理get请求的服务 app.get('/products',(req,res)=>{ res.send('接收到商品查询请求'); }); const server = app.listen(8000,"localhost",()=>{ console.log('服务器已启动,地址是:https://localhost:8000');//服务器启动时执行的操作 });
将对象或是数组以json的格式返回使用res.json(对象名);
通过请求查询参数获得对应的数据信息
app.get('/product/:id',(req,res)=>{ res.json(products.find((product)=>product.id == req.params.id)); });
3.监控服务器文件的变化
安装nodemonitor工具来监控源代码,当代码改变时自动重启node服务器并加载最新的代码。npm install -g nodemon 使用nodemon aution_server.js启动服务 当修改服务器文件时,服务器就会自动重启二.http通讯
angular使用响应式的方式处理http请求1.了解angular的http服务
http的class就是标准的typescript类,对应不同的方法就是发送不同请求的 方法的参数 url:发送的路径 requestoptionsargs(可选的)定义了一组与请求相关的参数 每个方法都返回一个可观测的流observable2.发送http请求
生成ng g component product
代码内容
//控制器内容 import 'rxjs/rx';//引入内容就可以进行响应式编程 export class productcomponent implements oninit{ datasource:observable;//用来接受http服务中返回的流 products:array=[];//用于和模板进行数据绑定 constructor(private http:http){//需在module引入http模块 this.datasource = this.http.get('/api/products').map((res)=>res.json());//get方法只是定义了http请求 } ngoninit(){ this.datasource.subscribe((data)=>this.products=data);//当使用subscripe订阅方法时,请求才真正发出去,将结果存到products中 } }
创建proxy.conf.json文件
文件内容{ "/api":{//api表示请求的前缀 "target":"https://localhost:8000"//表示如果访问/api开头的路径,则将请求内容转发到localhost的8000端口上.如访问/api/products则会访问https://localhost:8000/api/products } }
修改一下脚本内容package.json
"scripts":{ "start":"ng serve --proxy-config proxy.conf.json"//添加相关参数配置 }
在模板上使用async异步管道获得对应的流数据
控制器代码import 'rxjs/rx';//引入内容就可以进行响应式编程 export class productcomponent implements oninit{ products:observable; constructor(private http:http){//需在module引入http模块 this.products = this.http.get('/api/products').map((res)=>res.json());//直接获得对应流传给模板,由异步管道来处理 } ngoninit(){} }模板代码
- {{product.title}}
发送http请求时带上请求头
控制器代码import 'rxjs/rx';//引入内容就可以进行响应式编程 import {headers} from '@angular/http';//通过angular包获得headers类 export class productcomponent implements oninit{ products:observable; constructor(private http:http){//需在module引入http模块 let myheaders:headers = new headers(); myheaders.append("authorization","basic 123456"); this.products = this.http.get('/api/products',{headers:myheaders}).map((res)=>res.json());//将请求头header放到方法的第二个参数中 } ngoninit(){} }
三.websocket通讯
1.了解websocket通讯
websocket是低负载的二进制协议,目前主流的已经内置了对websocket的支持 使用http协议进行通讯时,客户端与服务器的连接在同一时间数据传递的方向只有一个,要么在发送请求数据,要么在接受响应数据,是不能同时发送和接受的 在websocket协议中,是允许同一时间双方向数据传递的,如在发送请求的时候还能接受数据,另外websocket是一个长连接协议,不需要在每次发送和接受数据时建立连接,所以websocket的通讯延迟比http要低,且由于是长连接的存在,不需要在每次请求时都携带连接相关信息(如请求头中连接相关信息) 在nodejs的生态圈中,有很多项目实现了websocket协议,我们使用ws。安装ws依赖库npm install ws --save,安装类型定义文件npm install @types/ws --save-dev2.使用ws创建websocket服务器
服务器端代码
import {server} from 'ws'; const wsserver = new server({port:8085});//配置在8085端口上创建websocket服务器 wsserver.on('connection',websocket => { websocket.send('这个消息是服务器主动推送的');//当有任意一个客户端连接到服务器的时候,给客户端推送一个消息 websocket.on('message',message=> console.log('接收到消息:'+message));//当接受到消息的时候,将消息打印到控制台上 }) setinterval(()=>{ if(wsserver.clients){//判断当前websocket上是否有客户端连接 wsserver.clients.foreach(client => {//利用foreach方法向所有客户端广播消息 client.send('这是定时推送'); }) } },2000);//每个两秒钟向客户端推送消息
浏览器端代码
生成新的serviceng g service shared/websocket 在websocketservice中编写代码@injectable() export class websocketservice{ ws:websocket; constructor(){} //返回一个流,流中包含服务器推送的消息 createobservablesocket(url:string):observable{ this.ws = new websocket(url);//通过url连接一个对应的websocket服务器 return new observable( this.ws.onmessage = (event) => observer.next(event.data);//在websocket接收到消息的时候发送事件 this.ws.onerror = (event) => observer.error(event);//在websocket发生错误的时候发送异常 this.ws.onclose = (event) => observer.complete();//在websocket关闭的时候流发出一个关闭的信号 ); } //向服务器发送一个消息 sendmessage(message:string){ this.ws.send(message);//利用websocket发送消息 } }使用组件接受服务器消息,点击按钮向服务器发消息ng g component websocket 在组件中编写代码
export class websocketcomponent implements oninit { constructor(private wsservice:websocketservice) {}//注意需要声明提供器provider ngoninit(){ this.wsservice.createobservablesocket("ws://localhost:8085")//使用的是websocket协议,所以不是http .subscribe( data => console.log(data), err => console.log(err), () => console.log('流已经结束') );//参数一是正常回调,参数二是发生异常,参数三是流结束的时候的回调 } sendmessagetoserver(){//在模板上设置按钮设置点击事件 this.wsservice.sendmessage('hello from client');//向服务器发送消息 } }
四.实战
当拿到的是一个observable流时(如observable
由于是异步属性,当我们在ngoninit中调用异步请求方法获得内容时,另一个进程在渲染页面,页面上有异步请求需要的对象方法或属性时由于可能还没有拿到对应数据而报错,我们可以使用**{{对象?.属性}}**的方式调用,即加一个?号,此时当对象没有数据时则不会显示
利用service传递数据
//1.在service中设置事件信息,如下(订阅的传递的是productsearchparams) searchevent:eventemitter= new eventemitter(); //2.订阅事件,如下(当事件被发射后,此处会在参数接受到事件发射的内容,并执行对应更新数据的操作,注意需要注入productservice) this.productservice.searchevent.subscribe( param => this.products = this.productservice.search(param); ); //3.发射事件,如下(其中this.formmodel.value的值为productsearchparams类型,注意需要注入productservice) this.productservice.searchevent.emit(this.formmodel.value);
上一篇: xUtils框架网络获取
下一篇: Docker——简单部署及基础操作