誰かがJqueryを使ってAjaxの呼び出しを説明し、それをコントローラメソッドに渡すことができれば幸いです。 誰もがアヤックスのjQueryを使用して呼び出して、コントローラメソッドにそれを渡すように説明できる場合、それは素晴らしいことだ ajax呼び出しをController Actionメソッドに渡すにはどうすればよいですか?
// Using the core $.ajax() method $.ajax({ // The URL for the request url: "post.php", // The data to send (will be converted to a query string) data: { id: 123 }, // Whether this is a POST or GET request type: "GET", // The type of data we expect back dataType : "json", }) // Code to run if the request succeeds (is done); // The response is passed to the function .done(function(json) { $("<h1>").text(json.title).appendTo("body"); $("<div class=\"content\">").html(json.html).appendTo("body"); }) // Code to run if the request fails; the raw request and // status codes are passed to the function .fail(function(xhr, status, errorThrown) { alert("Sorry, there was a problem!"); console.log("Error: " + errorThrown); console.log("Status: " + status); console.dir(xhr); }) // Code to run regardless of success or failure; .always(function(xhr, status) { alert("The request is complete!"); });
構文 例と説明。
は、すべての
? – Vladimirs
Ajax JQueryを使用してasp.net mvcのコントローラでアクションメソッドを呼び出す方法を知りたい。 @Vladimirs – raghav
"構文例" - http://www.w3schools.com/php/php_ajax_php.asp、ajax構文については、あなた自身の周りを見てください –