代码之家  ›  专栏  ›  技术社区  ›  zuZuu

节点-在映射函数中使用HTML代码时仅显示1项

  •  0
  • zuZuu  · 技术社区  · 2 年前

    我想用这样的节点发送一封电子邮件:

    from: "abc@gmail.com",  
    to: "test@gmail.com",  
    subject: "test",  
    html: <p>Message</p>
    

    这很好,但当我想在html输入中映射一些数据时,它只显示最后一项(数量)

    <div style="color: #f59e0b;">${cartItems.map((item) => {
     return item.name, item.quantity;
     })}
    </div>
    

    如果我在模板文本中使用html,我会得到一个错误:SyntaxError:意外的令牌'<'

    ${cartItems.map((item) => {
    return(
     <div>
         <div style='color: #fff;'> item.name</div>
         <div style='color: #fff;'> item.name</div>
     </div>
    )
    })}
    
    1 回复  |  直到 2 年前
        1
  •  4
  •   Konrad    2 年前

    通过使用 ${} 您可以暂时禁用该字符串,因此HTML语法没有意义

    ${cartItems.map((item) => {
    return(`
     <div>
         <div style='color: #fff;'> ${item.name}</div>
         <div style='color: #fff;'> ${item.name}</div>
     </div>
    `)
    })}