基于Express框架使用POST传递Form数据

时间:2021-05-25

本文实例为大家分享了基于Express框架使用POST传递Form数据的具体代码,供大家参考,具体内容如下

客户端使用Form发送数据

在客户端Html文件中Form代码如下:

<!-- POST test --><form action="/test" method="post" id="foo" > <input type="text" name="username"> <input type="password" name="password"> <input type="submit"></form>

在服务器端处理'/test' POST请求的代码如下:

var bodyParser = require('body-parser'); // ... // create application/json parservar jsonParser = bodyParser.json() // create application/x-plete.'); }); }); request.on("error", function(e) { console.log('upload Error: ' + e.message); }) request.write( postData ); request.end(); } form();

客户端使用jQuery发送数据

客户端使用jQuery的$.ajax post数据,

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>Post Data</title> <script src="jquery.min.js" type="text/javascript"></script> <script src="client.js" type="text/javascript"></script></head><body> <!-- POST test --><form action='/update' method='post' id='foo' > Parameters<table border="0"> <tr> <td> File Name</td> <td> <input type="text" name="filename" value = "foo.txt" /></td> </tr></table> </form><button name="button1" id='startButton' > Update</button> </body></html>

client.js

$(document).ready(function(){ //try joining the server when the user clicks the connect button $("#startButton").click(function () { var filename = $("#input[name=filename]").val(); $.ajax({ type: 'POST', url: "/update", // dataType: "jsonp", data: { "filename": filename} , jsonpCallback: 'callback', success: function (data) { // ... }, error: function (xhr, status, error) { console.log('Error: ' + error.message); }, }); });});

server端使用node.js解析数据

//// Modules var express = require('express'); var bodyParser = require('body-parser'); //// Global variables var app = express(); // body parserapp.use(bodyParser.json());app.use(bodyParser.urlencoded({ extended: false })); app.post('/update', function(req, res, next) { // Checking require if (!req.body) return res.sendStatus(400); console.log('filename: ' + req.body.filename); res.redirect('./');});

参考文献:expressjs/body-parser

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章