OK首次用戶,我試圖將數據發送到backend/index.js
的Node.js和ExpressJS身體解析器包檢索節點的數據
要求
- 數據發佈到後端節點
- 檢索發佈數據和存儲值作爲變量
請告訴我問題
該帖子是200成功,這工作。
然而,當我瀏覽到:
我得到:
不能得到/後端/指數
我要去哪裏錯了?
這裏是我的前端後後
var settings = {
"async": true,
"crossDomain": true,
"url": "http://localhost:8080/backend/index.js",
"method": "POST",
"headers": {
"content-type": "application/x-www-form-urlencoded"
},
"data": {
"id": "1223",
"token": "223",
"geo": "ee"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
我正在嘗試從這個數據並存儲在後端節點變量。
後端使用/ index.js
// grab the packages we need
var express = require('express');
var app = express();
var port = process.env.PORT || 8080;
// routes will go here
// start the server
app.listen(port);
console.log('Server started! At http://localhost:' + port);
var bodyParser = require('body-parser');
app.use(bodyParser.json()); // support json encoded bodies
app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies
// POST http://localhost:8080/api/users
// parameters sent with
app.post('/backend/index', function(req, res) {
var user_id = req.body.id;
var token = req.body.token;
var geo = req.body.geo;
res.send(user_id + ' ' + token + ' ' + geo);
});
你這個男人!謝謝 – Beep