如何使用EJS模板引擎将变量传递给内联javascript?

时间:2016-02-17 01:49:55

标签: javascript html ajax node.js ejs

我已经从.EJS模板中名为items的数组中创建了一个按钮/文本的html列表。如何将特定项目的id(item.id)传递给按钮的功能,以便将正确的数据发送到我的api?感谢。

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Menu</title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script type="text/javascript">

    function print(id) {
        $.ajax({
          url: "https://www.example.com/api/1/print",
          type: "POST",
          data: {
            "item_id": id
          },
          dataType: "json",
          success: function (result) {
            alert(result);
          },
          error: function (xhr, ajaxOptions, thrownError) {
            alert(xhr.status);
            alert(thrownError);
          }
        });
      };
    </script>
  </head>
  <body>
    <h2>Menu</h2>
    <ul>
        <% for(item of items) { %>
          <li>
            <button onclick="print(item.id)">PRINT</button>
            <%= item.name %> - <%= item.id %>
          </li>
        <% } %>
    </ul>
  </body>
</html>

1 个答案:

答案 0 :(得分:4)

<button onclick="print('<%= item.id %>')">PRINT</button>

是你如何使用我使用的每种模板语言。看完文档后,似乎EJS是相同的