zoukankan      html  css  js  c++  java
  • postman连接不了localhost问题解决

    学习搭建服务器可用postman 连接不了localhost的端口

    网上好多教程是这样连接

    看完视频后我们是这样

    找了大量资料都解决不了,什么版本,什么证书的都不好使,最简单的就是去掉http://

    //get 测试
    
    const http=require('http')
    const querystring=require('querystring')
    
    const server=http.createServer((req, res)=>{
       
        //GET
        console.log('method',req.method)
        const url=req.url
        //  /
        console.log('url:',url)
        req.query=querystring.parse(url.split('?')[1])
        console.log('query:',req.query)
    
        res.end(
            JSON.stringify(req.query)
        )
    
    })
    
    server.listen(8000)
    console.log('测试get')
    node get
    const http=require('http')
    const server=http.createServer((req, res) =>{
         if(req.method==='POST'){
    
            console.log('content-type',req.headers['content-type'])
    
            let postData=""
            req.on('data',chunk=>{
                postData+=chunk.toString()
            })
            req.on('end',()=>{
                console.log(postData)
                res.end('post请求执行结束')
            })
         }
    })
    server.listen(8000);
    console.log('post请求执行开始')
    node post

    测试代码

  • 相关阅读:
    Java基础知识三点
    《计算机网络》读书笔记
    Shell编程初步
    《现代操作系统》读书笔记
    《数据库系统概论》读书笔记
    《数据结构》读书笔记
    Linux使用笔记
    【Thinking in Java】读书笔记
    算法题摘录六
    算法题摘录五
  • 原文地址:https://www.cnblogs.com/hack-ing/p/11990583.html
Copyright © 2011-2022 走看看