所以我看过很多这样的例子:
public class WebService : System.Web.Services.WebService { [WebMethod] public List<string> getList() { return new List<string> {"I", "Like", "Stack", "Overflow"}; } }
您似乎可以通过成功函数以警报的形式查看从c#方法返回的数据。但是,如果我想在函数调用之外访问此“ input + 1”数据,该怎么做呢?另外我不确定如何调用没有参数的方法?
<body> <select id="wordSelect"> // Drop Down Menu to be populated </select> <script> $(function () { $.ajax({ url: 'WebService.asmx/getList', data: '{**NO PARAMETERS?!**}', // should I also call JSON.stringify? type: 'POST', dataType: 'json', contentType: 'application/json', success: function (data, status) { alert(data); alert(typeof data); } }); }); $.each(data.i, function(index, item) { // will this access "I", "Like", ... etc? $(#wordSelect).append( $("<option></option>") .text(item) ); }; </script> </body>
最后,我想使用通过ajax调用的ac#方法返回的JSON数据填充下拉列表,但是我不确定如何处理似乎卡在函数中的JSON数据呼叫?
抱歉,我是Jquery / AJAX / etc的新手,但是非常感谢!
如果您的方法不带参数,则不要在ajax调用中指定data属性
<script> $(function () { $.ajax({ url: 'WebService.asmx/getList', type: 'POST', dataType: 'json', //make sure your service is actually returning json here contentType: 'application/json', success: function (data, status) { //here data is whatever your WebService.asmx/getList returned //populate your dropdown here with your $.each w/e } }); }); </script>
同样,我可能是错的,但是您显示的WebService方法看起来不会返回json。我认为您将必须序列化或设置内容类型或类似内容。(自从我使用了asmx类型的服务以来,随着时间的流逝)