我需要在这样声明的Typescript中使用一个对象:
queryParameters = { flagged: true };
现在我希望从变量名中检索flagged
。类似的东西:
var param = 'flagged';
queryParameters = { ValueOf(param): true };
有什么想法吗?
感谢。
答案 0 :(得分:1)
为什么不使用computed property names:
<body>
<div class="bigBox">
<div class="box">
content1
</div>
<div class="box">
content2
</div>
<div class="box">
content3
</div>
</div>
</body>