0

我在javascript中有这段代码:

var express = require('express');

var bodyParser = require('body-parser');
var app = express();

app.use(bodyParser.json());

app.post('/test', function (req, res) {
console.log(req.body);
})

var server = app.listen(8080, function () {
})

从rails应用程序我想在正文中收到这个json:

 {"content": "some content", "test":"some tests"}

但相反,我收到了这个:

{ '{"content":"some content","test":"some test"}' : ''}

知道我做错了什么吗?

这是发送 JSON 的方式:

response = JSON.parse RestClient.post("#{test_runner_url}/test", {content: content, test: test}.to_json)
4

1 回答 1

0

所以答案是:

RestClient.post("#{test_runner_url}/test", {content: content, test: test}, :content_type => 'application/json')
于 2015-02-04T03:33:24.683 回答