前端学习(1420):ajax的post请求

前端学习(1420):ajax的post请求_第1张图片

前端学习(1420):ajax的post请求_第2张图片

// 引用expess框架
const express = require('express');
// 处理路径
const path = require('path');

const bodyParser = require('body-parser');


// 创建网站服务器
const app = express();
app.use(bodyParser.urlencoded());
app.get('/first', (req, res) => {
    res.send('hello geyao')
})
app.get('/responsdate', (req, res) => {
    res.send({ "name": "geyao" })
})
app.post('/post', (req, res) => {
    res.send(req.body);
})
app.get('/get', (req, res) => {
    res.send(req.query);
})
app.use(express.static(path.join(__dirname)));
// 监听端口
app.listen(3000);
console.log('网站服务器启动成功, 请访问localhost')

ajax3.html





    
    
    Document



    

运行结果

前端学习(1420):ajax的post请求_第3张图片

你可能感兴趣的:(ajax,前端)