2

javascriptからコントローラーメソッドにパラメーターを送信するにはどうすればよいですか? たとえば、パラメーター「2012」を送信しようとしています

私のビューのスクリプトは次のとおりです。

$.ajax({
                        type: "get", url: "test", data: {}, // How can i fill this data like @item ?
                        success: function (data) {

                            alert(data);

                        }

私のコントローラーメソッド:

public string test()
        {

            TestServices client = new TestServices();
            client.ClientCredentials.UserName.UserName = "service_test";
            client.ClientCredentials.UserName.Password = "..";
            client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.None;

            decimal? x = client.GetTest(2012, 7, 1);

            return (""+x);


        }
4

1 に答える 1

3
[HttpGet]    
public string test(string name, string age)

そしてアヤックス

$.ajax({
                    type: "get", url: "test", data: {name:"Messi",age:"36yo"}, // How can `i fill this data like @item ?`
                    success: function (data) {

                        alert(data);

                    }
于 2012-09-13T15:18:15.453 に答える