使用Node后端处理网页GET请求

Posted anbrera

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Node后端处理网页GET请求相关的知识,希望对你有一定的参考价值。

 

后端代码

var http = require(‘http‘);
var fs = require(‘fs‘);
var url = require(‘url‘);


// 创建服务器
http.createServer(function (request, response) {

    // 解析请求,包括文件名
    var pathname = url.parse(request.url).pathname;
    var RTA = decodeURI(request.url);
    console.log("客户端请求的完整 URL  /   " + RTA);

    if (RTA === "/favicon.ico") {
        //如果请求网页图标,则忽略
    } else {
        //  URLparame URL中的参数部分
        var URLparame = url.parse(request.url, true).query;

        // 从文件系统中读取请求的文件内容
        fs.readFile(pathname.substr(1), function (err, data) {
            if (err) {
                // 输出错误
                console.log(err);
                response.writeHead(404, {
                    ‘Content-Type‘: ‘text/html
                });
            } else {
                // 响应请求
                response.writeHead(200, {
                    ‘Content-Type‘: ‘text/html‘
                });
                // 响应文件内容
                if (RTA === "/index.html") {
                    // 如果仅请求网页域名,立刻输出请求的文件名
                    response.write(data.toString());
                    //否则分析请求参数
                } else {
                    // 获取URLparame 具体参数
                    var uid = URLparame.LoginName;
                    var psw = URLparame.LoginKey;
                    var che = URLparame.LoginChe;
                    //输出请求信息
                    console.log("URL中的参数值    LoginName /  " + uid);
                    console.log("URL中的参数值    LoginKey /   " + psw)
                    console.log("URL中的参数值    LoginChe /   " + che)

                    if (uid === 1) {
                        console.log("处理程序:", "我该干啥?");
                    }
                }
            }
        });
    }
}).listen(8080);

// 控制台会输出以下信息
console.log(‘Server running at http://127.0.0.1:8080/‘);

 

以上是关于使用Node后端处理网页GET请求的主要内容,如果未能解决你的问题,请参考以下文章

使用Node后端处理POST请求

前端发请求后端没接受到是啥情况,状态码200

将 Node.js GET /POST 请求更改为 Ajax

测开之・《前后端交互axios》

如何在前端 apollo-client 上处理来自 Node/Koa 的后端错误

渲染单个网页需要多少HTTP get()请求?一个还是多个?