模板10导航失败(Windows.UI.Xaml.Controls.Frame.NavigationFailed未处理)

时间:2016-06-22 19:25:27

标签: uwp template10

我似乎无法在Template10中使用传统导航。我总是得到导航失败的错误。 Template10是否要求我使用“XAML行为样式”导航而不是像以前一样使用导航后面的代码?

我也在捕捉内部异常,这些是我在那里看到的错误:

解析值时遇到意外的字符:h。路径'',第0行,第0位。 您的参数必须是可序列化的。如果不是,则使用SessionState。

(但我的参数只是一个字符串)

        private void lvResults_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        try
        {
            int intIndex = lvResults.SelectedIndex;
            string strShowLink = g_ro.webPages.value[intIndex].displayUrl;

            //This is what is returned in the line above and I want it as my passed parameter : 
            //https://www.grc.com/sn/sn-482.htm

            //Open Detailspage sending parameter as a string
            Frame.Navigate(typeof(BlankPage1),strShowLink);
        }

        catch (Exception ex)
        {
            //Error caught in app.xaml.cs (UnhandleExceptio)
            //Windows.UI.Xaml.Controls.Frame.NavigationFailed was unhandled.
            string strEx = ex.Message;
        }

2 个答案:

答案 0 :(得分:1)

我做了一个基本的演示并重现了你的问题。我查看了模板10的源代码,发现模板10在frame上添加了一个事件。如下所示:

frame.Navigating += (s, e) => FacadeNavigatingCancelEventHandler(s, e);
private async void FacadeNavigatingCancelEventHandler(object sender, NavigatingCancelEventArgs e)
{
        ...
    object parameter = null;
    try
    {
        parameter = SerializationService.Deserialize(e.Parameter?.ToString());
    }
    catch (Exception ex)
    {
        throw new Exception("Your parameter must be serializable. If it isn't, then use SessionState.", ex);
    }
    ...
 }

因此在导航时会尝试反序列化您的参数。您必须首先序列化您的参数,如下所示:

using Template10.Services.SerializationService;
...
string param = @"https://www.grc.com/sn/sn-482.htm";
string str=SerializationService.Json.Serialize(param);
Frame.Navigate(typeof(OtherPage), str);

错误将消失。但是如果你只是想在代码隐藏中导航,你也可以使用如下的NavigationService:

string param = @"https://www.grc.com/sn/sn-482.htm";
var NavService = NavigationService.GetForFrame(Frame);
NavService.Navigate(typeof(OtherPage), param);

答案 1 :(得分:0)

前提是您正在使用MVVM实践并将viewmodel设置为相关页面中的datacontext(View-First)。该viewmodel将继承ViewModelBase,默认情况下它确实具有NavigationService属性。否则,您将继承INAVigable构建您自己的viewmodel并设置" required"通过INAVigable界面。

这也引入了关注点的分离,只对#34;显示"没有做(除非是视图相关)并处理"点击,选择等"在viewmodel上

请记住,这也会促使您按定义的类型x:Bind或后期绑定"{Binding SomeProperty}"

绑定属性