c#web服务的ajax参数

时间:2012-09-04 06:53:30

标签: c# ajax parameters

我有一个webservice函数HellowWorld(string str),我想在js中调用它。如何从js将参数传递给HelloWorld?我的代码如下。非常感谢。

// js中的代码

function BindJson() {

    $.ajax({
        type: 'GET',
        url: 'Service1.asmx?op=HelloWorld',

        data: {str: 'asdasdas'},

        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data1) {
            alert('suc    ' + data1.d);
        },
        error: function (request, status, errorThrown) {
            alert('err    ' + status + errorThrown);
        }
    });
}

$(document).ready(function() {
    BindJson();    
});

// c#webservice中的代码

[WebMethod]
        public void HelloWorld(string str)
        {
            StreamWriter _testData = new StreamWriter(Server.MapPath("~/data.txt"), true);
            _testData.WriteLine(str); // Write the file.
            _testData.Flush();
            _testData.Close(); // Close the instance of StreamWriter.
            _testData.Dispose(); // Dispose from memory.       
        }

1 个答案:

答案 0 :(得分:0)

?op =是通过浏览器测试webservice的操作参数,你可以使用'Service1.asmx / HelloWorld'代替Service1.asmx /?op = HelloWorld