我分叉了一个很棒的项目here,并且刚刚开始学习一些东西。我无法弄清楚我的问题是关于自定义解组的一些事情,如果你看到here,你可以看到这个解组Thing
结构,其中包含一个Data interface{}
字段,然后使用该字段进行解组Kind string
字段。除嵌套情况外,这一切都很有效。所以最好的例子就是一个例子:
只是说你有Thing
结构,那种类型是listing
,因此Thing.Data
将其解组为listing
。然后,listing
有3 Children
个link
类型Children []Thing
字段。这些孩子最终属于map[string]interface {}
类型,这是我的问题。如何通过嵌套数据解压缩?因此Children.Data
也是未编组的。有没有办法在go中执行此操作或者我是否必须编写大循环或递归算法?请让我知道你的想法,或者我是否正在考虑这种情况。谢谢
更新 这是一个json样本
{
"kind": "Listing",
"data": {
"after": null,
"dist": 10,
"facets": {},
"modhash": null,
"whitelist_status": "all_ads",
"children": [
{
"kind": "t3",
"data": {
"domain": "self.nanocurrency",
"approved_at_utc": null,
"mod_reason_by": null,
"banned_by": null,
"num_reports": null,
"subreddit_id": "t5_2wlj3",
"thumbnail_width": null,
"subreddit": "CryptoCurrency",
"selftext_html": null,
"selftext": "",
"likes": null,
"suggested_sort": null,
"crosspost_parent_list": [
{
"domain": "self.nanocurrency",
"approved_at_utc": null,
"mod_reason_by": null,
"banned_by": null,
"num_reports": null,
"subreddit_id": "t5_4br49",
"thumbnail_width": null,
"subreddit": "nanocurrency",
"selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>Seeing lots of comments about the lack of timestamps in the protocol, and just wanted to provide some information on why objectively accurate, global time timestamps are an illusion in decentralized systems. Logical time on the other hand is achievable and is in fact achieved in Nano via the individual block chains and the directed, acyclic graph (DAG). </p>\n\n<p>Generally, in a decentralized, distributed system, only logical time (C happened after B happened after A) can be agreed on globally (e.g. Lamport time: <a href=\"https://amturing.acm.org/p558-lamport.pdf\">https://amturing.acm.org/p558-lamport.pdf</a> or vector clocks). This is what the nano ledger does via chaining blocks, just as any other blockchain. Then it connects those chains via a DAG. Syncing global time to logical time is a hard problem that can either be approached via a consensus approach which is prone to sybil attacks, via a probabilistic approach which is what most blockchains go with - essentially relying on their peers - or a centralized approach like NTP which is a no-go in a decentralized system. If you&#39;re interested, check e.g. this paper: <a href=\"http://soft.vub.ac.be/%7Etvcutsem/distsys/clocks.pdf\">http://soft.vub.ac.be/~tvcutsem/distsys/clocks.pdf</a></p>\n\n<p>So what you&#39;re running into is the problem that while theoretically all or a relevant subset of nodes within the Nano or Bitcoin or Ethereum network could agree to call a certain time &quot;Monday February 12 2018 20:35:23&quot;, this timestamp could still be incorrect vs the outside world.</p>\n\n<p>That&#39;s why any accurate global timestamps in software today rely on centralized information and trusted entities. The only way this can change is if machines start setting their clocks on their own accurately (e.g. chip-scale atomic clocks)</p>\n\n<p>Some people think this is bad news for Nano because in traditional blockchain, timestamps are fairly important because they are used in new block validation: <a href=\"http://culubas.blogspot.co.uk/2011/05/timejacking-bitcoin_802.html\">http://culubas.blogspot.co.uk/2011/05/timejacking-bitcoin_802.html</a> . Timestamps are a blessing and a curse at the same time in blockchain: They allow for timing and validation of blocks and therefore regulation of coin mining, but also allow for timestamp double spend attacks. Since Nano does not use mining, it is not susceptible to those attacks.</p>\n\n<p>Even with the relative importance of time and timestamps in Bitcoin, timestamp in Bitcoin are not guaranteed to be corresponding to logical time on the chain. Here&#39;s the bitcoin wiki talking about the bitcoin block timestamp: <a href=\"https://en.bitcoin.it/wiki/Block_timestamp\">https://en.bitcoin.it/wiki/Block_timestamp</a> </p>\n\n<blockquote>\n<p>A timestamp is accepted as valid if it is greater than the median timestamp of previous 11 blocks, and less than the network-adjusted time + 2 hours. &quot;Network-adjusted time&quot; is the median of the timestamps returned by all nodes connected to you. As a result, block timestamps are not exactly accurate, and they do not even need to be in order. Block times are accurate only to within an hour or two. </p>\n</blockquote>\n\n<p>This is probably as good as it gets. Still no ordering guarantees though, and a possibilities for attacks which have been discussed again and again. There are certain guards in Bitcoin code to prevent these from happening. </p>\n\n<p>So if you have somebody lecturing you about how architecturally superior coins would have a accurate and monotonically increasing timestamps, point them here, or here: <a href=\"https://cointelegraph.com/news/timestamp-hacking-debunking-the-myth-of-precision-timestamps\">https://cointelegraph.com/news/timestamp-hacking-debunking-the-myth-of-precision-timestamps</a></p>\n\n<p>Would timestamps be convenient to have on the protocol? Yes, and that would likely be a good reason to include them. Are timestamps accurately depicting global time, and can they be used as evidence in any chain? No they can&#39;t.</p>\n\n<p>Why are we seeing inaccurate timestamps in the block explorer? Because these are kept in a db outside of the ledger and have been set January 19. Nothing more to it.</p>\n\n<p>Why do people like to babble about how this is a weakness in Nano? No clue.</p>\n</div><!-- SC_ON -->",
"selftext": "Seeing lots of comments about the lack of timestamps in the protocol, and just wanted to provide some information on why objectively accurate, global time timestamps are an illusion in decentralized systems. Logical time on the other hand is achievable and is in fact achieved in Nano via the individual block chains and the directed, acyclic graph (DAG). \n\nGenerally, in a decentralized, distributed system, only logical time (C happened after B happened after A) can be agreed on globally (e.g. Lamport time: https://amturing.acm.org/p558-lamport.pdf or vector clocks). This is what the nano ledger does via chaining blocks, just as any other blockchain. Then it connects those chains via a DAG. Syncing global time to logical time is a hard problem that can either be approached via a consensus approach which is prone to sybil attacks, via a probabilistic approach which is what most blockchains go with - essentially relying on their peers - or a centralized approach like NTP which is a no-go in a decentralized system. If you're interested, check e.g. this paper: http://soft.vub.ac.be/~tvcutsem/distsys/clocks.pdf\n\nSo what you're running into is the problem that while theoretically all or a relevant subset of nodes within the Nano or Bitcoin or Ethereum network could agree to call a certain time \"Monday February 12 2018 20:35:23\", this timestamp could still be incorrect vs the outside world.\n\nThat's why any accurate global timestamps in software today rely on centralized information and trusted entities. The only way this can change is if machines start setting their clocks on their own accurately (e.g. chip-scale atomic clocks)\n\nSome people think this is bad news for Nano because in traditional blockchain, timestamps are fairly important because they are used in new block validation: http://culubas.blogspot.co.uk/2011/05/timejacking-bitcoin_802.html . Timestamps are a blessing and a curse at the same time in blockchain: They allow for timing and validation of blocks and therefore regulation of coin mining, but also allow for timestamp double spend attacks. Since Nano does not use mining, it is not susceptible to those attacks.\n\nEven with the relative importance of time and timestamps in Bitcoin, timestamp in Bitcoin are not guaranteed to be corresponding to logical time on the chain. Here's the bitcoin wiki talking about the bitcoin block timestamp: https://en.bitcoin.it/wiki/Block_timestamp \n\n> A timestamp is accepted as valid if it is greater than the median timestamp of previous 11 blocks, and less than the network-adjusted time + 2 hours. \"Network-adjusted time\" is the median of the timestamps returned by all nodes connected to you. As a result, block timestamps are not exactly accurate, and they do not even need to be in order. Block times are accurate only to within an hour or two. \n\nThis is probably as good as it gets. Still no ordering guarantees though, and a possibilities for attacks which have been discussed again and again. There are certain guards in Bitcoin code to prevent these from happening. \n\nSo if you have somebody lecturing you about how architecturally superior coins would have a accurate and monotonically increasing timestamps, point them here, or here: https://cointelegraph.com/news/timestamp-hacking-debunking-the-myth-of-precision-timestamps\n\nWould timestamps be convenient to have on the protocol? Yes, and that would likely be a good reason to include them. Are timestamps accurately depicting global time, and can they be used as evidence in any chain? No they can't.\n\nWhy are we seeing inaccurate timestamps in the block explorer? Because these are kept in a db outside of the ledger and have been set January 19. Nothing more to it.\n\nWhy do people like to babble about how this is a weakness in Nano? No clue.",
"likes": null,
"suggested_sort": null,
"user_reports": [],
"secure_media": null,
"is_reddit_media_domain": false,
"link_flair_text": null,
"id": "7ww6bm",
"banned_at_utc": null,
"mod_reason_title": null,
"view_count": null,
"archived": false,
"clicked": false,
"media_embed": {},
"report_reasons": null,
"author": "ohlookaballoon",
"num_crossposts": 2,
"saved": false,
"mod_reports": [],
"can_mod_post": false,
"is_crosspostable": true,
"pinned": false,
"score": 24,
"approved_by": null,
"over_18": false,
"hidden": false,
"thumbnail": "self",
"edited": false,
"link_flair_css_class": null,
"author_flair_css_class": null,
"contest_mode": false,
"gilded": 0,
"downs": 0,
"brand_safe": false,
"secure_media_embed": {},
"removal_reason": null,
"author_flair_text": null,
"stickied": false,
"can_gild": true,
"thumbnail_height": null,
"parent_whitelist_status": null,
"name": "t3_7ww6bm",
"spoiler": false,
"permalink": "/r/nanocurrency/comments/7ww6bm/why_global_time_objectively_accurate_timestamps/",
"subreddit_type": "public",
"locked": false,
"hide_score": false,
"created": 1518417258,
"url": "https://www.reddit.com/r/nanocurrency/comments/7ww6bm/why_global_time_objectively_accurate_timestamps/",
"whitelist_status": null,
"quarantine": false,
"title": "Why global time, objectively accurate timestamps are not achievable in decentralized systems",
"created_utc": 1518388458,
"subreddit_name_prefixed": "r/nanocurrency",
"ups": 24,
"media": null,
"num_comments": 18,
"is_self": true,
"visited": false,
"mod_note": null,
"is_video": false,
"distinguished": null
}
],
"user_reports": [],
"secure_media": null,
"is_reddit_media_domain": false,
"link_flair_text": null,
"id": "7x3r45",
"banned_at_utc": null,
"mod_reason_title": null,
"view_count": null,
"archived": false,
"clicked": false,
"media_embed": {},
"report_reasons": null,
"author": "ohlookaballoon",
"num_crossposts": 0,
"saved": false,
"mod_reports": [],
"can_mod_post": false,
"is_crosspostable": true,
"pinned": false,
"score": 2,
"approved_by": null,
"over_18": false,
"hidden": false,
"thumbnail": "default",
"edited": false,
"link_flair_css_class": null,
"author_flair_css_class": "New",
"contest_mode": false,
"gilded": 0,
"downs": 0,
"brand_safe": true,
"secure_media_embed": {},
"removal_reason": null,
"author_flair_text": "Redditor for 27 days.",
"stickied": false,
"can_gild": true,
"thumbnail_height": null,
"parent_whitelist_status": "all_ads",
"name": "t3_7x3r45",
"crosspost_parent": "t3_7ww6bm",
"spoiler": false,
"permalink": "/r/CryptoCurrency/comments/7x3r45/why_global_time_objectively_accurate_timestamps/",
"subreddit_type": "public",
"locked": false,
"hide_score": false,
"created": 1518496223,
"url": "https://np.reddit.com/r/nanocurrency/comments/7ww6bm/why_global_time_objectively_accurate_timestamps/",
"whitelist_status": "all_ads",
"quarantine": false,
"title": "Why global time, objectively accurate timestamps are not achievable in decentralized systems",
"created_utc": 1518467423,
"subreddit_name_prefixed": "r/CryptoCurrency",
"ups": 2,
"media": null,
"num_comments": 0,
"is_self": false,
"visited": false,
"mod_note": null,
"is_video": false,
"distinguished": null
}
},
答案 0 :(得分:4)
这正是json.RawMessage的用途(查看文档中的解组示例)。首先解组JSON对象的顶层,检查kind字段,然后解组数据字段:
type Listing struct {
WhitelistStatus string `json:"whitelist_status"`
Children []Thing `json:"children"`
}
type T3 struct {
Domain string `json:"domain"`
CrosspostParentList []struct {
Domain string `json:"domain"`
} `json:"crosspost_parent_list"`
}
type Thing struct {
Kind string `json:"kind"`
Data interface{} `json:"data"`
}
func (t *Thing) UnmarshalJSON(b []byte) error {
var step1 struct {
Kind string `json:"kind"`
Data json.RawMessage `json:"data"`
}
if err := json.Unmarshal(b, &step1); err != nil {
return err
}
var step2 interface{}
switch step1.Kind {
case "Listing":
step2 = &Listing{}
case "t3":
step2 = &T3{}
default:
return errors.New("unknown kind: " + step1.Kind) // or simply ignore
}
if err := json.Unmarshal(b, step2); err != nil {
return err
}
t.Kind = step1.Kind
t.Data = step2
return nil
}
答案 1 :(得分:1)
在你的情况下,你需要创建一个递归函数,它将获得底层interface{}
的嵌套值,直到最后一个深度。我们无法从interface{}
获取具有未知基础类型的嵌套值。以下是您在代码中可以执行的example