我想将数据发送到在tomcat server上运行的java后端。这是我到目前为止所尝试的。我已经安装了请求module.get方法正常工作。
Router.post('/', function(req, res) {
request({
uri: "http://localhost:8080/HIS_API/rest/UserService/registerUser",
method: "POST",
form: {
roleId:2,
employeeId:26,
userName:"testing",
password:"123"
}
}, function(error, response, body) {
console.log(body);
});
});
答案 0 :(得分:1)
您必须使用JSON.stringify发送此格式的数据。在那之前写console.log(错误)。并检查你得到的错误是什么。
request({
url: url, //URL to hit
method: 'post',
headers: { "Authorization": req.headers.authorization},//if required
timeout: 60 * 1000,
body: JSON.stringify(body)
}, function (error, result, body) {
if (error) {
console.log(error);
} else if (result.statusCode === 500) {
console.log('error');
} else {
console.log(body);
}
});