jquery的Ajax应用中服务器端返回内容的格式有哪些

2024-12-03 14:17:58
推荐回答(3个)
回答1:

1:可以直接返回拼接好的片段直接放到指定位置下面 例如:context.Response.Write("

内容
");
2::返回json数据 例如://显示详情
public JsonResult ShowDetail() {
var id = Convert.ToInt32(Request["id"].ToString());
UserInfo u = db.UserInfo.Single(ui=>ui.id== id);
return Json(u,JsonRequestBehavior.AllowGet);
}
3:直接放回判断结果 context.Response.Write("yes");

回答2:

这个返回的格式可以是任意标准mime,这个和jquery或者js是没有关系的

在服务器端只需要设置响应头的Content-Type就能指定其mime类型

希望对您有帮助~
By Billskate

回答3:

1.text/xml 或者 application/xml
2.text/html
3.json类型