0

我正在尝试使用 ajax 调用网络服务。Web 服务是用 vb.net 编写的。当我使用它的 url 直接调用它时它工作正常,但是当我使用 ajax 调用它时它返回

NetworkError:500 内部服务器错误-http://localhost/chart/webService.asmx/HelloWorld。

这是我的网络服务代码:

Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel

<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class webService
    Inherits System.Web.Services.WebService

    <WebMethod()> _
    Public Function HelloWorld() As String
        Return "Hello World"
    End Function

End Class

这是javascript代码:

$(document).ready(function() {
    var webMethod = 'http://localhost/chart/webService.asmx/HelloWorld';
    $.ajax({
        type: "POST",
        url: webMethod,
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            alert('all good');
        },
        error: function(e) {
            alert('err');
        }
    });
});

更新:

我将 HelloWorld() 更改为以下代码,但仍然出现相同的错误:

<WebMethod()> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)> _
Public Function HelloWorld() As String
    Dim aa As New System.Web.Script.Serialization.JavaScriptSerializer
    Return aa.Serialize("Hello World")
End Function
4

1 回答 1

0

利用:

data:{},

代替:

data:"{}",
于 2015-06-24T13:50:43.047 回答