我正在尝试迭代映射到字符串数组的内插变量。
看起来像这样。
{
"array": [
"hello",
"world",
"string"
]
}
const str = `path.to.the.${arrays}` <<-- this will be dynamic based on some other input
str.forEach((s) => {
console.log(s)
})
错误是Uncaught TypeError: str.forEach is not a function
是否有可能构建一个变量,将其映射到一些JSON数据,并能够遍历该数据?
编辑:
以供将来参考。
const str = path.to.the[arrays];
也应该工作。