ajax post 只看到第一個參數 (ajax post only sees first param)


問題描述

ajax post 只看到第一個參數 (ajax post only sees first param)

這是我的 ajax 帖子:

$("#defaultMigration").click(function(){

    $.ajax({
        type: "POST",
        url: "/Svn2GitService/services/svn2git/defaultMigration",
        contentType: 'application/json',
        data: JSON.stringify({ svnUrl : $("#svnUrl").val(),
                               gitUrl : $("#gitUrl").val(),
                               username : $("#username").val(),
                               password : $("#password").val()
            }),
        dataType: 'text',
        success: function(response){
            alert("Success!" + response);
        },
        failure: function(response) {
            alert("Error! " + response);
        }
    });
});

當我在服務中執行 System.out.println 時,我看到 svnUrl param 是唯一收到任何東西的人。事實上,它正在接收上述所有值。即svn url、git url、用戶名和密碼。

為什麼會這樣?


參考解法

方法 1:

Just out of curiosity, try the following. If it works, I'll explain what has happened after.

I'm using jQuery's $.param() function to serialize the data object.

$.param()

Create a serialized representation of an array, a plain object, or a jQuery object suitable for use in a URL query string or Ajax request.

var data = {
    svnUrl : $("#svnUrl").val(),
    gitUrl : $("#gitUrl").val(),
    username : $("#username").val(),
    password : $("#password").val()
}

data = $.param(data);

$.ajax({
    type: "POST",
    url: "/Svn2GitService/services/svn2git/defaultMigration",
    contentType: 'application/json',
    data: JSON.stringify(data),
    dataType: 'text',
    success: function(response){
        alert("Success!" + response);
    },
    failure: function(response) {
        alert("Error! " + response);
    }
});

(by Chris BoltonTheCarver)

參考文件

  1. ajax post only sees first param (CC BY‑SA 2.5/3.0/4.0)

#jquery #post #JSON #ajax






相關問題

讓 jQuery 與 Netscape 7 和 8 一起工作 (Getting jQuery to work with Netscape 7 and 8)

使用 Jquery 的 mvc3 搜索結果 (mvc3 search results with Jquery)

從嵌套的 jquery 函數返回一個值 (Return a value from nested jquery function)

Mencocokkan lebar divisi dengan jquery (Matching division widths with jquery)

無法在 jQuery AJAX 中多次生成點擊事件 (unable to generate click event more than once in jQuery AJAX)

使用雙引號格式並用逗號分隔元素數組 (Implode an element array with double quote format and separated by comma)

選擇不更新 (Select doesn't update)

chrome中帶有省略號的多行文本問題 (issue with multiline text with ellipsis in chrome)

AJAX/PHP/JS - 無法將頁面內容加載到容器中 (AJAX/PHP/JS - Cannot load page content into container)

使用 jQuery 將文本插入 textarea (Insert text into textarea with jQuery)

滾動到頁面底部,僅當用戶在 DOM 操作之前已經位於底部時 (Scroll to bottom of page, only if the user already was at the bottom before DOM manipulation)

如何設置單選按鈕的樣式,使其看起來像普通的可點擊按鈕? (How do I style a radio button to look like a normal clickable button?)







留言討論