我正在通过发布请求将数据从网页发送到服务器。
$("#1, #2, #3, #4").on("click", function(){
console.log($(this).attr("id"));
var xhr = new XMLHttpRequest();
xhr.open("POST", "SimpleServlet.html", true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
xhr.send(JSON.stringify({"product_id": $(this).attr("id"), "quantity" : 1 }));
});
借助此javascript。我确定它已发送到服务器并且到达了那里。
在服务器上,我尝试检索写入数据的值。
.post("SimpleServlet.html", ctx ->
{
final Response response = ctx.getResponse();
System.out.println("Getting result");
final ExecResult<String> result = ExecHarness.yieldSingle(c ->
ctx.parse(String.class));
System.out.println("Getting value");
response.send("webshop.html");
})
不幸的是,我没有找到有关如何相应地检索String值的任何指南。
我尝试了上面的方法,但这确实永远卡在ExecHarness中。
我希望得到这些值。带他们创建一个新的Java对象,然后返回另一个Java对象的json。
(第二个对象取决于先前的对象数据)
最佳答案
Ratpack's API reference
代替ExecHarness尝试这样的事情:
ctx.getRequest().getBody().then({ data ->
String text = data.getText();
// parse text with whatever you use, e.g. Jackson
System.out.println("Getting value");
response.send("webshop.html");
})
您也可以链接它,例如
context.getRequest().getBody().flatMap({ data ->
//parse data and get id
//call to async service who returns Promise
return service.getReport(id).map((String report) -> {
// do some staff
})
}).then({
//final staff before send response
//import static ratpack.jackson.Jackson.json;
context.getResponse().send(json(result).toString());
})