我正在尝试将表单作为JSON对象提交,因为我想创建一个带有播放的REST API。
我遇到的问题是Play告诉我这不是一个有效的JSON。
我的表格代码:
@(form : Form[Product]) @main("Create Form"){
@helper.form(routes.Products.createProduct, 'enctype -> "application/json"){
@helper.inputText(form("name"))
<button>Commit</button>
} }
控制器代码:
// Read JSON an tell if it has a name Path
@BodyParser.Of(BodyParser.TolerantJson.class)
public static Result createProduct() {
JsonNode json = request().body().asJson();
String name = json.findPath("name").textValue();
if (name == null) {
return badRequest("Not JSON");
} else {
return ok(name);
}
}
这是最好的方法吗?阅读有关使用Ajax提交的内容,但因为我是Play的新手,所以我不想用Play的表单语法来解决这个问题。
答案 0 :(得分:1)
你可以使用jQuery轻松完成(所以请确保你的头脑中包含jQuery)和基于serializeObject
函数的formAsJson()
函数。
@helper.form(routes.Products.createProduct(), 'id -> "myform") {
@helper.inputText(jsonForm("name"))
<button>Commit</button>
}
<script>
$.fn.formAsJson = function(){
var o = {};
var a = this.serializeArray();
$.each(a, function () {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return JSON.stringify(o)
};
var $myform = $("#myform");
$myform.on('submit', function () {
$.ajax({
url: $myform.attr('action'),
type: $myform.attr('method'),
contentType: "application/json",
data: $myform.formAsJson(),
success:function(){
alert("Great! Everything's OK!");
},
error: function(){
alert("Booo, something wrong :(");
}
});
return false;
});
</script>
并且您的createProduct()
操作看起来就像:
public static Result createProduct() {
JsonNode json = request().body().asJson();
String name = json.findPath("name").textValue();
if (json==null || name==null || ("").equals(name.trim())){
return badRequest();
}
return ok();
}