从代码隐藏调用 ASP.NET Web API

编程入门 行业动态 更新时间:2024-10-28 10:35:52
本文介绍了从代码隐藏调用 ASP.NET Web API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何直接从代码隐藏调用 ASP.NET Web API?或者我应该调用从代码隐藏中调用 getJSON 方法的 javascript 函数?

How would I call an ASP.NET Web API directly from code-behind? Or should I be calling my javascript function that calls the getJSON method from code-behind?

我通常有这样的事情:

function createFile() { $.getJSON("api/file/createfile", function (data) { $("#Result").append('Success!'); }); }

任何指针表示赞赏.TIA.

Any pointers appreciated. TIA.

*我使用的是 WebForms.

*I'm using WebForms.

推荐答案

如果必须自己调用 web 服务,可以尝试使用 HttpClient 如 Henrik Neilsen 所述.

If you must call the web service itself, you can try using HttpClient as described by Henrik Neilsen.

更新的 HTTPClient 示例

一个基本的例子:

// Create an HttpClient instance HttpClient client = new HttpClient(); // Send a request asynchronously continue when complete client.GetAsync(_address).ContinueWith( (requestTask) => { // Get HTTP response from completed task. HttpResponseMessage response = requestTask.Result; // Check that response was successful or throw exception response.EnsureSuccessStatusCode(); // Read response asynchronously as JsonValue response.Content.ReadAsAsync<JsonArray>().ContinueWith( (readTask) => { var result = readTask.Result //Do something with the result }); });

更多推荐

从代码隐藏调用 ASP.NET Web API

本文发布于:2023-10-29 13:28:58,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1539817.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:代码   ASP   NET   Web   API

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!