gpt4 book ai didi

xamarin - 在 Xamarin Forms Shell 中向 GoToAsync URI 导航添加查询会导致其停止工作

转载 作者:行者123 更新时间:2023-12-04 17:26:54 28 4
gpt4 key购买 nike

所以对于这个问题,我有一个非常简单的堆栈。主菜单屏幕 > 列表页面 > 详细信息页面。对于我使用的每个页面

Shell.Current.GoToAsync({name of page});
所以基本上是一个推然后回到堆栈中
Shell.Current.GoToAsync("../");
这一切都很好,直到我引入了查询来传递数据。
所以这很好用
Shell.Current.GoToAsync($"{nameof(Page)}");
但是这个
Shell.Current.GoToAsync($"{nameof(Page)}?Id={some id here}");
抛出这个异常
Relative routing to shell elements is currently not supported. 
Try prefixing your uri with ///: ///PageName?Id=3AC71D0B-D8E3-6C18-FFE3-6D41E154F000
这是没有意义的,因为导航在不包含查询的情况下显然可以工作。我哪里错了?这是错误还是预期的行为?

最佳答案

Relative routing to shell elements is currently not supported.Try prefixing your uri with ///: ///PageName?Id=3AC71D0B-D8E3-6C18-FFE3-6D41E154F000


这意味着您正在使用 Relative routes ,但是这不支持在 Xamarin Forms 之前传递数据 4.7 .
如果在 4.7 之前使用 Xamarin Forms 版本.你需要使用 Absolute routes传递数据,示例如下:
Shell.Current.GoToAsync($"//animals/elephants/elephantdetails?name={elephantName}");
并接收数据,代表被导航到的页面的类,或页面的类 BindingContext , 必须为每个查询参数装饰一个 QueryPropertyAttribute:
[QueryProperty("Name", "name")]
public partial class ElephantDetailPage : ContentPage
{
public string Name
{
set
{
BindingContext = ElephantData.Elephants.FirstOrDefault(m => m.Name == Uri.UnescapeDataString(value));
}
}
...
}
更多信息可以引用这里: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/shell/navigation#pass-data
============================更新==================== ============
正如 Shane 所说,来自上面的 Xamarin Forms 版本 4.7 , 相关路线 现在也支持传递参数。

关于xamarin - 在 Xamarin Forms Shell 中向 GoToAsync URI 导航添加查询会导致其停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62586261/

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