本文介绍了有关Aspx调用web方法的Select2的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用带有ASPX的select2调用web方法。
这是我在页面上的控件
I am trying to use select2 with ASPX calling a webmethod.
this is my control on the page
<input type="hidden" id="attendee" style="width:300px;"/>
这是我的javascript代码
this is my javascript code
$(document).ready(function () {
$('#attendee').select2(
{
placeholder: 'Enter name',
minimumInputLength: 1,
allowClear: true,
ajax:{
type: "POST",
url: "http://localhost:63830/project/TestClientPage2.aspx/GetClientList",
dataType: 'json',
data: function (term, page) {
return {
pageSize: 20,
pageNum: page,
searchTerm: term
};
},
results: function (data, page) {
//Used to determine whether or not there are more results available,
//and if requests for more data should be sent in the infinite scrolling
var more = (page * pageSize) < data.Total;
return { results: data.results, more: more };
}
}
});
});
这是我的webmethod。
and this is my webmethod.
public static string GetClientList(string searchTerm)
{
return @"{""employees"": [{ ""firstName"":""John"" , ""lastName"":""Doe"" }]}";
}
我遇到的问题是javascript没有调用webmethod。
谢谢
the issue i am having is that the javascript is not calling the webmethod.
thank you
推荐答案
这是我的webmethod。
and this is my webmethod.
public static string GetClientList(string searchTerm)
{
return @"{""employees"": [{ ""firstName"":""John"" , ""lastName"":""Doe"" }]}";
}
我遇到的问题是javascript没有调用webmethod。
谢谢
the issue i am having is that the javascript is not calling the webmethod.
thank you
这篇关于有关Aspx调用web方法的Select2的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!