編程語言開發數據接口以及搭建服務器

Node編寫服務器

  • 基於原生的http模塊開發本地服務器html

    //(1)使用原生的HTTP開發服務器
    const http = require('http')
    //處理get請求
    var server = http.createServer((req,res)=>{
        res.writeHead(200,{'Content-Type':'text/plain;charset=utf-8'})
        res.write('hello world')
        res.end()
    })
    //監聽端口
    server.listen(3000)
    //(2)處理post
        //處理post事件
        const http = require('http')
        const qs = require('querystring')
        var postHtml = 
        `
          <html>
            <head>
              <meta charset="utf-8">
              <title>POST</title>
            </head>
            <body>
              <form method="post">
                <label>用戶</label><input name="uname"/>
                <label>密碼</label><input name="upwd" type="password"/>
                <br>
                <input type="submit"/>
              </form>
            </body>
          </html>
        `
        var server = http.createServer((req,res)=>{
          var body = ""
          //處理post方式請求
          req.on('data',(data)=>{
            body += data
          })
          req.on('end',()=>{
            body = qs.parse(body)
            res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'})
            if(body.uname&&body.upwd){
              res.write(body.uname)
              res.write('<br>')
              res.write(body.upwd)
            }else{
              res.write(postHtml)
            }
            res.end()
          })
        })
        //console.log(server)
        server.listen(3000)

Node編寫ajax請求接口

  • 基於express第三方模塊開發node

    //第三方模塊構建特別方便
    //文件名:main.js
    const express = require('express')
    const bodyParser = require('body-parser')
    var app =  express()
    app.use(bodyParser.urlencoded({extended:false}))
    //處理get方式請求
    app.get('/',(req,res)=>{
        res.send('hello world')
    })
    //處理post方式請求
    app.post('/login',(req,res)=>{
        var uname = req.body.uname
        var upwd = req.body.upwd
        res.send({code:1,msg:"success"})
    })
    app.listen(3000)

解釋:上面的本地服務器是基於express框架寫的,首先必須引入第三方模塊。
  • 引入步驟:python

    1. $ npm i express($是指當前腳本文件所在的目錄);
    2. 而後就能夠使用該模塊啦,首先解釋get方式請求ajax

      • get方式請求用許多方式好比:express

        • form表單
        • ajax方式
        • 地址欄直接輸入
      • post方式請求npm

        • ajax方式請求;
        • form表單請求。這裏在post方式請求若是有參數的話,還須要引入body-parser模塊,用來解析req.body中的參數(至於怎樣傳參我這就不說啦)。
    3. 比較:res.send()方法與res.write()方法res.write():res.writeHead(200{"Content-Type":"text/plain;charset=utf-8"});res.write('hello world');res.end();res.send():一步res.send()至關於上面的三步
備註:一般路由接口是放在單獨的文件中而後在引入的,我這裏直接將接口寫在裏面啦,瀏覽器默認是get方式請求;所謂的接口其實就是路徑:上訴代碼的運行流程以下:當前目錄下 打開控制檯:輸入node main 而後在瀏覽器輸入: http:127.0.0.1:3000 就會打印出 "hello world"。上面還有一個接口"/login"這個接口只能以post方式請求,纔會響應數據,所 http:127.0.0.1:3000/login是沒有反應的

Python編寫服務器

#使用HTTPServer構建服務器(python版本3.71)
#直接輸入命令:py -m http.server 8080

Python編寫ajax請求接口

使用python編寫ajax數據接口

相關文章
相關標籤/搜索