我遇到了一个问题,我的应用程序的某个页面无法从逻辑删除中恢复。尝试访问应用程序只会导致回到主屏幕。
调试期间在控制台中记录了三行:
System.Runtime.Serialization.InvalidDataContractException
System.Runtime.Serialization.dll
类型的第一次机会异常
System.Reflection.TargetInvocationException
mscorlib.dll
类型的第一次机会异常
System.Runtime.Serialization.InvalidDataContractException
System.Runtime.Serialization.dll
类型的第一次机会异常
然后,我检查了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
}
为了能够制作墓碑并生存,我是否应该做些不同的事情?
答案 0 :(得分:0)
TombstoneHelper直接使用Page State对象,然后使用内置的序列化程序来序列化事物。页面中的某些内容使用默认序列化程序(DataContractSerializer)无法处理的JToken。
因为看起来你正在使用MVVM,我建议你自己直接管理视图模型的序列化和存储,然后在OnNavigatedTo方法中重新水化那里的viewmodel。
完整的复制将有助于提供更完整的解决方案。