gpt4 book ai didi

xamarin - 如何将绝对 URL 传递给 Zebble 中的 Api.Get 方法?

转载 作者:行者123 更新时间:2023-12-02 16:56:03 25 4
gpt4 key购买 nike

我尝试使用以下代码获取产品:

public static async Task<List<Product>> GetProducts()
{
return await Get<List<Product>>("http://locahost:5919/api/products");
}

但是 Get 方法似乎只接受相对 URL,我必须在 Config.xml 文件中的 Api.Base.Url 设置中传递绝对 URL。

我还尝试在 return 语句之前通过 BaseUrl 属性分配绝对 URL,但没有任何区别。

另一个奇怪的事情是,如果我插入一个假 URL(例如 http://www.yahoo.com )作为 Api.Base.Url 值并运行该项目,则会出现以下错误。 Error when adding a fake URL for Api.Base.Url

那么如果我们需要在一个项目中向不同 URL 中的不同 End Point 发出请求,我们该如何实现呢?

最佳答案

你的假设是不正确的。当您调用时:

Api.Get<TResponse>(someUrl);

然后:

  • 如果 someUrl 以 http://https:// 开头,那么它将被视为绝对 URL。
  • 否则,它将被视为相对 URL,在这种情况下,为了查找绝对 Url,Zebble 会在其前面添加配置值 Api.Base.Url

示例:

如果您的 config.xml 文件中有:

<Api.Base.Url>https://my-server.com</Api.Base.Url>

然后下面的行将发送一个 HTTP 请求到“https://my-server.com/api/hello ”:

Api.Get<TResponse>("api/hello");

但是 config.xml 文件中的 Api.Base.Url 值将在以下调用中被忽略(因为它是绝对 URL):

Api.Get<TResponse>("https://some-absolute-url.com/...");

关于xamarin - 如何将绝对 URL 传递给 Zebble 中的 Api.Get 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43406809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com