我想将同步流生成的 json 数据访问到异步流中。我正确地从同步流中获取 json 数据,我想从中获取某些属性值,我的 json 数据如下:
{"data" : [{"in_timestamp":"2012-12-04","message":"hello","out_timestamp":null,"from_user":"user2","ID":43,"to_user":"user1"}]} and to user is #[json:to_user]}
我想从此 json 格式访问 to_user 属性。我尝试过使用#[json:to_user]
,但它只是将其打印为字符串并且不返回任何值。请帮忙。提前致谢。