Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 jsoning ac# const 类,获取名称-值对。我需要在客户端通过字符串名称访问它们,例如
return $.parseJSON(constantClass).'property';
这显然不起作用 - 有没有办法使用字符串名称从我的 json 输入中获取我的值?
尝试以数组键的形式访问它们(对关联数组非常熟悉):
return $.parseJSON(constantClass)['property'];
在 MDN 上了解更多如何操作对象。
您可以使用:
JSON.parse(constantClass)['proptery']