javascript和python取dict字典对象的不同
dict1={"a":1,"b":2,"22a":44}
JS: dict1.a 和 dict1["a"]都可以
python:只能使用dict1["a"]
另外在JS中,不允许使用dict1.22a这种以数字开头的key,所有此时只能使用dict1["22a"]这种写法,这种问题主要出现在react做为前端、python做为后端时的情况下。python提供给前端的接口里还有这种不标准的key命名
参考:https://segmentfault.com/q/1010000002639901