代码之家  ›  专栏  ›  技术社区  ›  pinyil

此请求已被阻止,因为敏感信息在GET请求中使用时可能会泄露给第三方网站。

  •  1
  • pinyil  · 技术社区  · 7 年前

    此请求已被阻止,因为在GET请求中使用敏感信息时,可能会将其披露给第三方网站。若要允许GET请求,请将JsonRequestBehavior设置为AllowGet

    我使用了JsonResult,但它不起作用

    return Json(new { Success = true, BlogEntries = blogEntries, BlogEntryPhotos = blogEntryPhotos}, JsonRequestBehavior.AllowGet);
    

    我该怎么办?

    1 回复  |  直到 7 年前
        1
  •  0
  •   pinyil    7 年前

    List<BlogEntry> blogEntries = _blogEntryRepo.GetAll(x => x.IsActive.Value && x.PlaceMarkerID == placeMarker.Id, null, "BlogEntryPhotoes").ToList();
    JsonSerializerSettings jss = new JsonSerializerSettings { ReferenceLoopHandling = ReferenceLoopHandling.Ignore };
    return Json(new { Success = true, BlogEntries = JsonConvert.SerializeObject(blogEntries, Formatting.Indented, jss) }, JsonRequestBehavior.AllowGet);
    

    查看

    $.ajax({
          url: "/Map/GetBlogEntries",
          type: "post",
          datatype: "json",
          data: placeMarker,
          success: function (response) {
            if (response.Success) { 
                 var BlogEntries = JSON.parse( response.BlogEntries );
                 //BlogEntries[i].Title can be used
                 //BlogEntries[i].BlogEntryPhotoes[0].PhotoPath can be used
            }
            else {
                    //do something
        }
          },
          error: function (xhr, status) {
            //do something
          }
    });