C#:
public JsonResult GetSewingPlanningData(SewingPlanningDBModel _dbModel)
{
try
{
WashingBudgetRecipeItem objItem = new WashingBudgetRecipeItem();
List<SewingPlanningDBModel> _dbModelList = new List<SewingPlanningDBModel>();
_dbModelList = objItem.LoadPlannigData(_dbModel);
return this.Json(_dbModelList, JsonRequestBehavior.AllowGet);
}
catch (Exception ex)
{
return Json(new { Result = "ERROR", Message = ex.Message });
}
}
这在我的本地开发服务器中运行正常。但是当在IIS中发出请求时,它将引发以下错误:
此请求已被阻止,因为当在GET请求中使用敏感信息时,敏感信息可能会泄露给第三方网站。要允许GET请求,请将JsonRequestBehavior设置为AllowGet。