此請求已被阻止,因為當用在 GET 請求中時,會將敏感資訊透漏給第三方網站。若要允許 GET 請求,請將 JsonRequestBehavior 設定為 AllowGet。

來源:互聯網
上載者:User

標籤:image   ott   str   9.png   dir   help   方法   ring   分享   

1、問題描述

mvc從一個路徑擷取所有的圖片資訊,ajax方法如下:

function getimages(day) {            var year = $("#selYear").val();            var month = $("#selMonth").val();            selday = day;            var date = year + "." + month + "." + (day < 10 ? "0" + day : day);            $("#selInfo").text(date);            $("#fileContainer").html("");            $.ajax({                url: ‘@Url.Content("/MedOffice/Photo/ImageList")‘ + ‘?path=‘ + date,                type: ‘GET‘,                dataType: ‘text/json‘,                success: function(data) {                    alert(data);                },                error: function(xmlHttpRequest, textStatus, errorThrown) {                    console.log(xmlHttpRequest);                    alert(xmlHttpRequest);                }            });        }

調用執行返回如下結果:

2、問題分析

將json更改為jsonresult並設定為:

JsonRequestBehavior = JsonRequestBehavior.AllowGet//加上這一句

3、正確要求方法
public JsonResult ImageList(string path)        {            List<FileInfoViewModel> files = new List<FileInfoViewModel>();            try            {                var datetime = DateTime.Parse(path);                var mypath = path.Replace(datetime.Year + ".", "");                var destpath = "~/AllDocuments/" + datetime.Year + "/" + mypath;                destpath = Server.MapPath(destpath);                if (Directory.Exists(destpath))                {                    foreach (string filepath in Directory.GetFiles(destpath))                    {                        FileInfoViewModel model = new FileInfoViewModel                        {                            Path = filepath,                            Name = Path.GetFileNameWithoutExtension(filepath)                        };                        try                        {                            var fileInfo = new FileInfo(filepath);                            model.Size = fileInfo.Length.ToString();                            model.Date = fileInfo.CreationTime.ToString("yyyy-MM-dd HH:mm:ss");                        }                        catch (Exception e)                        {                            LogHelper.Error(e);                        }                    }                }                return new JsonResult()                {                    Data = new                    {                        result = 0,                        messate = "",                        data = files                    },                    JsonRequestBehavior = JsonRequestBehavior.AllowGet                };            }            catch (Exception e)            {                LogHelper.Error(e);                return new JsonResult()                {                    Data = new                    {                        result = -99,                        messate = e.Message,                        data = files                    },                    JsonRequestBehavior = JsonRequestBehavior.AllowGet                };            }        }

此請求已被阻止,因為當用在 GET 請求中時,會將敏感資訊透漏給第三方網站。若要允許 GET 請求,請將 JsonRequestBehavior 設定為 AllowGet。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.