使用AjaxForm上传文件时候,在IE下直接提示下载保存:
我的示例代码:
return this.Json( new { prop1 = 5, prop2 = 10 });
这种问题只出现在IE下,是由于AjaxFrom只接受以Html格式返回的Json,所以需要在返回的json对象里设置content:
return this.Json( new { prop1 = 5, prop2 = 10 }, "text/html");
时间: 2024-09-30 21:09:54
使用AjaxForm上传文件时候,在IE下直接提示下载保存:
我的示例代码:
return this.Json( new { prop1 = 5, prop2 = 10 });
这种问题只出现在IE下,是由于AjaxFrom只接受以Html格式返回的Json,所以需要在返回的json对象里设置content:
return this.Json( new { prop1 = 5, prop2 = 10 }, "text/html");