我需要将(json)对象插入到页面中使用的数组中。我正在使用带有jade的nodejs,并假设下面的代码可能符合我的目的,但它不起作用。
//this code is in the template:
script.
otherPlayers = {};
each player in playerList
otherPlayers["#{player.playerId}"] = !{JSON.stringify(#{player})};
在页面中,预期的结果是:
<script>
otherPlayers = {};
otherPlayers[0] = {"playerId": 0, "playerName": "Leo" };
otherPlayers[1] = {"playerId": 1, "playerName": "Daniel" };
otherPlayers[2] = {"playerId": 2, "playerName": "Lucas" };
</script>
任何提示都被很好地接受。在此先感谢您。