express基本使用
Posted 小姚同学要继续加油呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了express基本使用相关的知识,希望对你有一定的参考价值。
准备工作
- 终端中对node进行初始化
npm init --yes
- 安装express框架
npm i exporess
基本使用
- 引入express
const express = require('express');
- 创建应用对象
const app = express();
- 创建路由规则
app.get('/',(request,response)=>
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin','')
//设置响应体
response.send('HELLO EXPORESS GET');
);
app.post('/',(request,response)=>
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin','')
//设置响应体
response.send('HELLO EXPORESS POST');
);
- request:对请求报文的封装
- response:对响应报文的封装
- 监听端口启动服务
app.listen(8000,()=>
console.log("服务已经启动,8000 端口监听中....")
)
启动服务
在文件存放路径终端下运行
node express基本使用.js
AJAX发送请求
//1.创建对象
const xhr = new XMLHttpRequest();
//2.初始化 设置类型与 URL
xhr.open('POST','http://127.0.0.1:8000/server');
//3.发送
xhr.send();
xhr.onreadystatechange = function()
//判断
.....
//ex if(xhr.readyState === 4)
//if(xhr.status>=200 && xhr.status <300) .....
以上是关于express基本使用的主要内容,如果未能解决你的问题,请参考以下文章