我不理解此错误,在“ JsonResult Test()”中不生成错误,我正在作为ASP.NET MVC做其他项目
谢谢
错误:
System.InvalidOperationException: This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet.
[InvalidOperationException: This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet.]
System.Web.Mvc.JsonResult.ExecuteResult(ControllerContext context) +263733
System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +10
System.Web.Mvc.<>c__DisplayClass14.<InvokeActionResultWithFilters>b__11() +20
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation) +251
System.Web.Mvc.<>c__DisplayClass16.<InvokeActionResultWithFilters>b__13() +19
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +178
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +314
System.Web.Mvc.Controller.ExecuteCore() +105
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +39
System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +7
System.Web.Mvc.<>c__DisplayClass8.<BeginProcessRequest>b__4() +34
System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +21
System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +12
System.Web.Mvc.Async.WrappedAsyncResult`1.End() +59
System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +44
System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +7
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +8678910
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Tesis.Controllers
{
public class AnalysisSourceDataController : Controller
{
//
// GET: /AnalysisSourceData/
public ActionResult Index()
{
return View();
}
public JsonResult Test()
{
return Json(new { mymsg = "my msg" });
}
}
}
javascript
<script type="text/javascript">
$(function() {
$.getJSON("/AnalysisSourceData/Test", function(data) {
alert(data.mymsg);
});
});
</script>
你不懂什么 该错误几乎没有更具描述性。这是一项防止JSON劫持的安全功能,您可以这样禁用它。
return Json(new { mymsg = "my msg" }, JsonRequestBehavior.AllowGet);
但您应该了解其中的含义。
我在Alamofire 5.3中收到了大量失败的请求,其中响应对象本身为nil,或者错误为“无法解析响应”。我可以从服务器日志中看到,所有这些请求都返回有效。 这是我的设置: API管理器类: AccessTokenInterceptor: 这个拦截器从插入我的授权令牌 我也使用标准路由器的URL刚需转换,编码是通过JSON序列化(字典)或可编码协议(对象) 奇怪的是,我不认为我在做任何不同于我使
我开始使用spring 3.2的新MVC Testframework,但却无法为所有测试用例获取406个HTTP响应代码。 testcase非常简单 相应的资源是 我确信这是因为一个错误的媒体类型,但我不知道为什么。 失败测试用例的跟踪: java.lang.AssertionError:状态应为:<200>但为:<406>在org.springframework.test.util.Assert
我在解密收到的验证响应SAML消息时遇到问题。我的应用程序连接了两个不同类型的国内流离失所者。第一是ForgeRocks,OpenAM,第二是微软的ADFS服务器。为两个IDP提供了相同的服务提供商元数据文档,该文档包含用于加密和签名的相同证书公钥。 案例01 IdP : OpenAM,ForgeRock结果:正确处理解密和响应。 案例02 IdP:ADFS 2.0,Microsoft结果:解密失
在Android 5.0LollipopDefaultHttpClient似乎被打破。它不能设置连接到一些网站,成功地设置了以前版本的Android. 例如,我尝试连接到https://uralsg.megafon.ru 此代码在Android 2.3-4.4中工作,但在Android 5.0(设备和模拟器)上失败,错误连接被对等方关闭。当然,这是可以理解的,因为Android 5.0试图将这台旧
2016年8月1日11:34:39 AM org.apache.catalina.core.standardWrapperValve在路径为[/travelocity.com]的上下文中为servlet[jsp]调用严重:servlet.service()引发了异常[SAML响应的签名验证失败],根本原因为org.wso2.carbon.identity.sso.agent.exception.s
我试图检查gitubaction上的lint。我的github操作步骤如下 你能帮我修一下吗?