我想从服务器捕获数据作为答案并提醒它。但它提醒[对象]而不是我的答案文本“非常好”。这是我的ajax功能:
function ajaxsubmit(){
$.ajax({
url: "/update",
type: "POST",
}).complete(function(data) {
alert(data);
});
}
我的服务器端功能是:
public static Result ajaxupdate(){
String done = "very good!";
return ok(done);
}
我是否必须使用其他东西投射即将到来的数据,以便打印正常的纯文本?
非常感谢
答案 0 :(得分:2)
返回字符串。试试这个..
public static String ajaxupdate(){
String done = "very good!";
return done;
}