微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在没有参数的情况下调用c#方法并访问返回的数据?

因此,我看到了许多这样的示例:
https://stackoverflow.com/a/8094230/2525507

public class WebService : System.Web.Services.WebService {
   [WebMethod]
   public List<string> getList() {
      return new List<string> {"I", "Like", "Stack", "Overflow"};
   }
}

您似乎可以通过成功函数以警报的形式查看从c#方法返回的数据.但是,如果我想在函数调用之外访问此“输入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类型的服务以来,随着时间的流逝)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐