0

我编写了一个 java 脚本来将 json 对象发送到 c# 中的 Web 服务。我的网络服务有一个方法来检索名为 getPerson(String text){} 的 json 对象。我无法理解我将提供给 ajax 的 url 是什么。这是我的 java 脚本。

<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.js"></script>

<script type="text/javascript">
    function BindJson() {

document.getElementById("demo").innerHTML=Date();

var $pString = {"firstName": "Rukshi"};

       $.ajax({
                type: "POST",
                contentType: "application/json; charset=utf-8",
                data: $pString,
                datatype: "json",
                url: "http://localhost:54884/Service1.asmx/getPerson",

                success: function (data, status) {
        alert("ok");
                },
                error: function (msg) {
        alert(msg.status);
                }
     });

}
4

0 回答 0