-1
我想發送數據到在tomcat server.this上運行的java後端,這是我迄今試過的。我已經安裝了請求module.get方法是好好工作。POST請求無法使用node.js中的請求模塊工作
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);
});
});
那到底究竟是不是工作?你有錯誤嗎?也許服務器期望除了'application/x-www-form-urlencoded'之外的東西? – robertklep