jQuery代码:
function ajaxsubmit(){
$.ajax({
url: "/update",
type: "POST",
dataType: "html"
}).success(function(data) {
$('#result').html(data);
});
}
和我的 Java 函数:
public static Result ajaxupdate() {
String done = "very good";
return ok("very good").as("text/plain");
}
警报是给出的[object Object]
,而不是纯文本"very good"
。为什么?