gpt4 book ai didi

json - IE9 JSON 数据 "do you want to open or save this file"

转载 作者:IT老高 更新时间:2023-10-28 12:47:33 24 4
gpt4 key购买 nike

开始使用 IE9 测试我的 jQuery 应用程序。看来我在这里可能会遇到一些麻烦。我注意到,当我将 JSON 数据返回给 Javascript 方法时,我总是得到这样的提示:“你想打开还是保存这个文件?”并为我提供了 3 个按钮:打开、保存和取消。当然,我的 javascript 会根据 JSON 对象中设置的值执行操作,但由于 IE9 不会将其传递给脚本,因此我无法从那里执行后续操作。

还有其他人面临这个问题吗?这是一个快照。 enter image description here

最佳答案

如果有人在使用 ASP.net MVC 并尝试解决此问题 - 我在 MVC 框架 中使用了以下内置方法。只需更新 JsonResult 上的内容类型和编码。

public ActionResult Index(int id)
{
// Fetch some data
var someData = GetSomeData();

// Return and update content type and encoding
return Json(someData, "text/html", System.Text.Encoding.UTF8,
JsonRequestBehavior.AllowGet);
}

这为我解决了问题!

关于json - IE9 JSON 数据 "do you want to open or save this file",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5388893/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com