簡體   English   中英

ajax調用無法在ajax中使用

[英]ajax call not working with in ajax

我在ajax中使用了mvc控制器。 我使用jquery確認框執行任務。 當我單擊“確定”按鈕時,它需要調用另一個ajax並鏈接到另一個控制器,但是它不起作用

樣例代碼:

function button_click() {

    $.ajax({
        type: 'POST',
        url: 'url',
        data: {data},
        dataType: 'json',
        success: function (data) {
          if (data.success == true) { call(data); }
                            else { alert(data.data); }

          }
    });
}

function call(data)
{
var ans =  confirm(data)
if(ans)
{
  $.ajax({
 type: 'POST',
        url: '@(Url.Action("StudentList", new { Area = "Mec", Controller = "HOD" }))',, // this url not goes to the controller
        data: {data},
        dataType: 'json',
        success: function (data) {
          if (data.success == true) { alert(data.data); }
                            else {  }

          }
    });
} else { }
}

我已經嘗試過您的代碼,但對我有用。不同之處在於您需要以正確的格式傳遞數據。 數據:數據或數據:{數據:數據},而不是數據:{數據}

     function button_click() {
        $.ajax({
            type: 'POST',
            url: 'Demo/Demo_action',
            data: { data: "what you want to pass" },
            //dataType: 'json',
            //contentType: 'application/json',
            success: function (data) {
                if (data == "hello") {
                    call(data);
                }
            }
        });
    }
    function call(data) {
        var ans = confirm(data)
        if (ans) {
            $.ajax({
                type: 'POST',
                url: '@(Url.Action("Demo_action2", new { Area = "Mec", Controller = "Home" }))',
                //url: 'Home/Demo_action2', // this url not goes to the controller
                data: { data: data },
                dataType: 'json',
                success: function (data) {
                    alert(data);
                }
            });
        }
        else
        { }
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM