我遇到了一个问题,即我的应用程序的某个页面不会从墓碑中恢复。尝试到达应用程序只会导致被放回主屏幕。
调试期间将三行记录到控制台:
-
System.Runtime.Serialization.InvalidDataContractException
类型的第一个机会例外发生在System.Runtime.Serialization.dll
中 -
mscorlib.dll
中发生的第一个机会例外,CC_4 -
System.Runtime.Serialization.dll
中发生的第一个机会例外是CC_6
然后,我检查了e.ExceptionObject.Message.ToString()
并看到了此错误:
"Type 'Newtonsoft.Json.Linq.JToken' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute."
我在该页面的CS代码中使用了一些JObjects
和JTokens
。我特别在列表框中设置绑定值与来自JObjects
的值:
<ListBox x:Name="list" Height="600" HorizontalContentAlignment="Stretch">
<!--SelectionChanged="list_SelectionChanged"-->
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding hline}" FontSize="{StaticResource PhoneFontSizeMedium}" TextWrapping="Wrap" Width="474" />
<TextBlock Text="{Binding body}" Margin="0,0,0,36" FontSize="{StaticResource PhoneFontSizeNormal}" TextWrapping="Wrap" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
然后在代码中:
var deserialized = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Mydata>>(messagearray.ToString().Replace("<br/>", "n"));
list.ItemsSource = deserialized;
对于墓碑,我只是这样做:
protected override void OnNavigatingFrom(NavigatingCancelEventArgs e)
{
this.SaveState(e); // <- first line
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
this.RestoreState(); // <- second line
}
为了能够墓碑并生存吗?
tombstoneHelper直接使用页面状态对象,然后使用内置的串行器来序列化事物。页面中的某些内容使用默认序列化器(DataconTractSerializer)无法处理的JToken。
看起来您正在使用MVVM,我建议您直接管理视图模型的序列化和存储,然后在Onnavigatedto方法中重新补充ViewModel。
完整的复制将有助于更完整的解决方案。