how would I go about accessing a deep value using a single variable in bracket notation?

前端 未结 3 1255
遇见更好的自我
遇见更好的自我 2021-01-25 08:54

I am wondering how to do the following- I have the following data:

dta = {
       \"fielddata\": {
           \"text1\": \"4B030C2E-3D53-4DF8-A3535EF377B45DE5\",         


        
3条回答
  •  忘了有多久
    2021-01-25 09:20

    Another option is JSONPath. For relatively simple usecases, doing it manually is likely a better solution, but with greater complexity, I might use something more formalized.

    And while I hate to suggest it, there's always eval('dta.fielddata.text1')

提交回复
热议问题