2

重複の可能性:
PHP Web サービスが jQuery AJAX から機能しない


ローカル環境のURLに php Web サービスを作成しました:

http://localhost:5454/kisan-06/index.php?option=com_api&format=raw&app=users&resource=login&key=dfd8a84f8cdce807ae1d30a838415ea37eaa075c

AndroidフォンギャップアプリでjQuery.ajaxを使用してこれを呼び出しています。

Ajax 呼び出しは次のとおりです。

$.ajax({
    type: "POST",
    url: "http://localhost:5454/kisan-06/index.php?option=com_api&format=raw&app=users&resource=login&key=dfd8a84f8cdce807ae1d30a838415ea37eaa075c",
    data: "{ username: 'sai.kiks2@gmail.com', password: '123456'}",
    contentType: "application/json; charset=utf-8",
    cache : false,
    dataType: "json",
    success: function(data) {
        alert("in success");
    },
    error: function(){
       alert("There was an error loggin in");
    }
});

エラーコールバック get が呼び出されるたびに、エラーを追跡できません。これで私を助けてください。

4

1 に答える 1

0

ajax呼び出しで呼び出す必要がある特定のメソッドをURLに指定する必要があると思います。私はPHP Webサービスを開発していませんが、Aspでは次のように呼び出します。

 <script type="text/javascript">

    $(document).ready(function () {
    $("#MainContent_ButtonSearch").click(function () {
    /// hide employee details (if shown)
    $("#empDetails").hide("slow");
    var empId = $("#MainContent_TextBoxEmpId").val();
    $.ajax({
      type: "POST",
      dataType: "json",
      contentType: "application/json",
      **url: "EmployeeService.asmx/GetEmployeeById",**
      data: "{'employeeId': '" + empId.toString() + "'}",
      success: function (data) {
      $("#textId").html(data.d.ID);
      $("#textName").html(data.d.FullName);
      $("#textTitle").html(data.d.Title);
      $("#textDepartment").html(data.d.Department);
      /// show employee details
      $("#empDetails").show("slow");
   },
   error: function () {
    alert("Error calling the web service.");
   }
  });
  });
  });

    </script>
于 2012-08-23T10:24:06.157 に答える