IE下AjaxForm上傳文件直接提示下載的兼容性Bug

使用AjaxForm上傳文件時候,在IE下直接提示下載保存:html

個人示例代碼:json

   return this.Json(
            new
                {
                    prop1 = 5,
                    prop2 = 10
                });

 這種問題只出如今IE下,是因爲AjaxFrom只接受以Html格式返回的Json,因此須要在返回的json對象裏設置content:this

   return this.Json(
            new
                {
                    prop1 = 5,
                    prop2 = 10
                }, 
            "text/html");
相關文章
相關標籤/搜索