我只是想尝试从客户端向nodejs服务器发送对象
Ajax电话:
$.ajax({
url: config.api.url,
type: config.api.method,
contentType: config.api.contentType, // application/x-www-form-urlencoded; charset=UTF-8
dataType: config.api.dataType, // JSON
data: config.api.dataType === 'GET' ? {} : JSON.parse(tmp),
headers: config.api.headers,
success: (response) => { onSuccess(response); },
error: (error) => { onError(error); }
});
已发送数据:
{
sort: { name: 1 }
}
// I set name property by sort['name'] = 1; at js
但服务器收到了:
{ 'sort[name]': 1 }
Nodejs server code:
exampleData = (req, res) => {
var sort = req.body.sort;
console.log(sort); // undefined
console.log(req.body); // { ..., 'sort[name]': 1 }
}
所以,我无法像js代码中的对象那样正确读取对象。
我的nodejs服务器代码:
import * as bodyParser from 'body-parser';
import * as express from 'express';
import * as mongoose from 'mongoose';
import * as path from 'path';
import * as cookieParser from 'cookie-parser';
const app = express();
app.use(bodyParser.json({ limit: 1024*1024*20, type: 'application/json' }));
app.use(bodyParser.urlencoded({ extended: false }));
// app.use(express.bodyParser({limit: '50mb'}));
app.use(cookieParser());
我该如何解决?
答案 0 :(得分:3)
尝试在您的js代码中将contentType
更改为application/json
。
contentType
与服务器和客户端的类型不同。
答案 1 :(得分:0)
请考虑以下事项:
var x = { sort : {name:1} }
x["sort"] returns {name:1}
也
sort["name"] returns 1
同样
sort["name"] = 1
与
相同sort = {name:1}
在您的服务器中它不会将其视为JSON,因此问题在于您的服务器所看到的,它不会将其视为JSON,在服务器中将内容类型视为json(应用程序/)它可能会奏效。