web-dev-qa-db-ja.com

ページを更新せずにhtmlページ[javascript]からwebserviceメソッドを呼び出す方法

値を返すwebserviceがあります。ここで私の要件は、index.htmlページからwebserviceを呼び出す必要があり、そのページにはhtml送信ボタンがあります。そのボタンをクリックして、JavaScript.を呼び出しています。そこから、Webメソッドを呼び出します。どうすればこれを達成できますか。

私のWebサービスは"localhost/ws/service.asmx";で、WebメソッドはHelloWorldです

 <input type="button" value="Submit" id="btn_submit" onclick ="return fun()">

 function fun() {


    // here  I want to call the "helloworld" method.
    return true;
}
11
ocp

Performin POSTにjQueryを使用するか、次のようにHTMLページからリクエストを取得します。

function fun() 
{
   var data="hello";
   $.get("http://localhost/ws/service.asmx/HelloWord", function(response) {
        data = response;
   }).error(function(){
  alert("Sorry could not proceed");
});

   return data;
}

または:

function fun() 
{
  var data="hello";
  $.post('http://localhost/ws/service.asmx/HelloWord',{},function(response) 
  {     data = response;
  }).error(function(){
  alert("Sorry could not proceed");
});

    return data;
}
14
Aditya

ajax リクエストをWebサービスに送信できます

 $.ajax({
            url: "WebServiceURL",
            data: "", //ur data to be sent to server
            contentType: "application/json; charset=utf-8", 
            type: "GET",
            success: function (data) {
               alert(data);
            },
            error: function (x, y, z) {
               alert(x.responseText +"  " +x.status);
            }
        });
7
Divesh Salian