错误' Newtonsoft.Json.Linq.JToken'无法使用TombstoneHelper序列化

时间:2012-11-05 22:07:54

标签: visual-studio-2010 linq windows-phone-7 json.net tombstone

我遇到了一个问题,我的应用程序的某个页面无法从逻辑删除中恢复。尝试访问应用程序只会导致回到主屏幕。

调试期间在控制台中记录了三行:

  • 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代码中使用了一些JObjectsJTokens。我特别将列表框中的绑定值设置为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
}

为了能够制作墓碑并生存,我是否应该做些不同的事情?

1 个答案:

答案 0 :(得分:0)

TombstoneHelper直接使用Page State对象,然后使用内置的序列化程序来序列化事物。页面中的某些内容使用默认序列化程序(DataContractSerializer)无法处理的JToken。

因为看起来你正在使用MVVM,我建议你自己直接管理视图模型的序列化和存储,然后在OnNavigatedTo方法中重新水化那里的viewmodel。

完整的复制将有助于提供更完整的解决方案。