很老的1.1 vb.net / asp.net网络应用程序。我正在尝试进行ajax调用以填充自动填充文本框:
$("#ucAddActionItemIssueActions_txtActionItem")
// don't navigate away from the field on tab when selecting an item
.bind("keydown", function(event) {
if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
event.preventDefault();
}
}).autocomplete({
minLength: 0,
source: function (request, response) {
//get client value
var c = $("#ucAddActionItemIssueActions_ddlClientAssignTo").val();
var params= '{"ClientID":' + c + '}';
$.ajax({
url: "GetLogins.asmx/GetLogins",
data: params,
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function (data) { return data; },
success: function (data) {
response($.map(data.d, function (item) {
return {
value: item.name
}
}))
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
var email = GetEmail(ui.item.value);
email = email + ";";
emails.push(email);
$("#ucAddActionItemIssueActions_hdnEmails").val(emails.join(""));
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join("");
return false;
}
});
Web方法(.asmx文件)就是这个(就像测试用例一样):
Imports System.Web.Services
Imports System.Collections
<System.Web.Services.WebService(Namespace := "http://tempuri.org/quikfix.jakah.com/GetLogins")> _
Public Class GetLogins
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function GetLogins(ByVal ClientID As Integer) As String()
Dim myList As New ArrayList
myList.Add("jstevens")
myList.Add("jdoe")
myList.Add("smartin")
Dim arr() As String = CType(myList.ToArray(Type.GetType("System.String")), String())
Return arr
End Function
End Class
在Chrome的开发者工具中运行我的应用程序时,它会引发内部500错误。当我点击它时,它说:
System.InvalidOperationException:请求格式无效: 应用/ JSON;字符集= UTF-8。在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters()at System.Web.Services.Protocols.WebServiceHandler.Invoke()at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
参数全部匹配所以我不确定为什么这会引发错误。我的web.config
文件中是否需要任何内容来明确提供对.asmx文件的任何引用?这是一个旧的1.1 .net网络应用程序,所以我不确定是否需要对web.config文件进行任何更改?
答案 0 :(得分:0)
如果您将.NET 1.1用于Web服务以及应用程序,那么该Web服务将不知道如何解释JSON。有很多情况会产生您所获得的错误,但我注意到您所遇到的错误发生在名为ReadParameters
的方法中。所以我专注于参数:
var params= '{"ClientID":' + c + '}';
我第一次看过这个。我不是1.1网络服务专家,也不是AJAX专家,但除非我错误地认为,对于1.1 Web服务,JSON只是一个字符串。 Web服务无法解释(或返回)JSON。
所以我会尝试将你的单个参数传递给int:
var params = c;
看看它有什么不同。