.map的索引数组不适用于node.js

时间:2018-08-16 09:21:28

标签: javascript arrays json node.js

大家好,我尝试用map json数组建立索引。但是它不能正常工作。我认为我的代码不正确。

我的代码:

var  entireHTMLssssq = lloopmois.map(result, index => `<div id=${index}  style="position: absolute;">  <b style="position:absolute;top:-6px;left:2px"> ${result} </b>    </div>`).join('')

请告诉我正确的语法。

2 个答案:

答案 0 :(得分:0)

如果有多个参数,则需要使用arrow functions在参数周围加上括号。

a[i::l]

答案 1 :(得分:0)

问题出在地图功能的括号()return上。

array.map((result, index)=>{return ...})是正确的语法

var  entireHTMLssssq = lloopmois.map((result, index) => {
return `<div id=${index} style="position: absolute;">  <b 
style="position:absolute;top:-6px;left:2px"> ${result} </b>    
</div>`}).join('')