mvc5 webap2 前台如何使用 ajax 請求後台API

來源:互聯網
上載者:User

標籤:style   blog   http   java   color   get   

按照正常的寫法,總是出現404錯誤,研究了很久,在這裡找到瞭解決方案:http://buxuxiao.com/article/using-jquery-to-post-frombody-parameters-to-web-api

 

現在總結一下,

單個參數的情況下:

1、後台參數正確的寫法如下:

 

        [Route("Services/{controller}/{action}")][HttpPost][HttpGet]public string UploadTransportNetworkAlarmChat([FromBody]string obj){
...}

必須在參數列表前面加上[FormBody]標籤。

2、前台的參數,仍然以key-value方式添加,但KEY的名字必須置為空白:

$.ajax({                type: "POST",                url: "../Services/ChatTest/UploadTransportNetworkAlarmChat",                data: {"":"helloWorld"},                dataType: ‘JSON‘,})

 

多個參數的情況下,

1、後台需要定義實體類,參數列表中不用增加[FromBody]標籤,如下:

    public class tempObj    {        public string imgBase64 { get; set; }        public string name { get; set; }    }

接收 方法:

[Route("Services/{controller}/{action}")]        [HttpPost]        [HttpGet]        public string UploadTransportNetworkAlarmChat(tempObj obj)        {}

2、前台仍然使用JSON

            var TempObj = { "imgBase64": image, "name": "helloWorld" }            $.ajax({                type: "POST",                url: "../Services/ChatTest/UploadTransportNetworkAlarmChat",                data: TempObj,                dataType: ‘JSON‘,            })              .done(function (data) {                  alert("Data Loaded: " + data);              });

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.