Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have value response_data which stores this data:

{"response_data"=>
  {"transaction_type"=>"void",
   "status"=>"error",
   "unique_id"=>"ec8b1e786efe64f667ad19ff1b39fb92",
   "transaction_id"=>"kcyplptlpk966yifmuct6jj0od",
   "code"=>"410",
   "technical_message"=>"no approved reference transaction found",
   "message"=>"Something went wrong, please contact support!",
   "mode"=>"test",
   "timestamp"=>"2017-11-24T08:07:40Z",
   "descriptor"=>"rwgwg",
   "sent_to_acquirer"=>"false"}}

How I can get the keys from this structure?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

response_data.keys + response_data.values.flat_map(&:keys)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...