Node.js - EJS - 包括部分

时间:2011-03-23 11:54:58

标签: node.js ejs

我正在尝试将Embedded Javascript渲染器用于节点: https://github.com/visionmedia/ejs

我想知道如何在.ejs视图文件中包含另一个视图文件(部分)。

12 个答案:

答案 0 :(得分:107)

使用Express 3.0:

<%- include myview.ejs %>

该路径与包含该文件的调用者相关,而不是与app.set("views", "path/to/views")设置的views目录相对。

EJS includes

答案 1 :(得分:17)

与Express 4.x兼容:

根据this的正确用法,可以在模板中包含部分内容:

<%- include('partials/youFileName.ejs') %>

您正在使用:

<% include partials/yourFileName.ejs %>

已弃用。

答案 2 :(得分:12)

在快递4.x中,我使用以下内容加载ejs

  var path = require('path');

  // Set the default templating engine to ejs
  app.set('view engine', 'ejs');
  app.set('views', path.join(__dirname, 'views'));

  // The views/index.ejs exists in the app directory
  app.get('/hello', function (req, res) {
    res.render('index', {title: 'title'});
  });

然后你只需要两个文件就可以了 - views/index.ejs

<%- include partials/navigation.ejs %>

views/partials/navigation.ejs

<ul><li class="active">...</li>...</ul>

您还可以告诉Express使用ejs来表示html模板:

var path = require('path');
var EJS  = require('ejs');

app.engine('html', EJS.renderFile);

// Set the default templating engine to ejs
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));

// The views/index.html exists in the app directory
app.get('/hello', function (req, res) {
  res.render('index.html', {title: 'title'});
});

最后,您还可以使用ejs布局模块:

var EJSLayout = require('express-ejs-layouts');
app.use(EJSLayout);

这将使用views/layout.ejs作为您的布局。

答案 3 :(得分:8)

从Express 4.x开始

<强> app.js

// above is all your node requires

// view engine setup
app.set('views', path.join(__dirname, 'views')); <-- ./views has all your .ejs files
app.set('view engine', 'ejs');

<强> error.ejs

<!-- because ejs knows your root directory for views, you can navigate to the ./base directory and select the header.ejs file and include it -->

<% include ./base/header %> 
<h1> Other mark up here </h1>
<% include ./base/footer %>

答案 4 :(得分:3)

Express 3.x不再支持partial。根据帖子ejs 'partial is not defined',您可以在EJS中使用“include”关键字来替换已删除的部分功能。

答案 5 :(得分:2)

在官方文档https://github.com/mde/ejs#includes中显示的内容包括:

<%- include('../partials/head') %>

答案 6 :(得分:1)

app.js 添加

app.set('view engine','ejs')

在视图/部分中添加您的部分文件(ejs)

index.ejs

<%- include('partials/header.ejs') %>

答案 7 :(得分:0)

尝试使用整个路径==>

<%包括C:/ Users / UserName /Desktop/NodeJS/partials/header.ejs%>    --->注意'/'

使用节点--version v8.11.4 + Express模块​​v.4.x进行了尝试

答案 8 :(得分:0)

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">

 <form method="post" class="mt-3">
        <div class="form-group col-md-4">
          <input type="text" class="form-control form-control-lg" id="plantName" name="plantName" placeholder="plantName">
        </div>
        <div class="form-group col-md-4">
          <input type="text" class="form-control form-control-lg" id="price" name="price" placeholder="price">
        </div>
        <div class="form-group col-md-4">
            <input type="text" class="form-control form-control-lg" id="harvestTime" name="harvestTime" placeholder="time to harvest">
          </div>
        <button type="submit" class="btn btn-primary btn-lg col-md-4">Submit</button>
      </form>

<form method="post">
        <table class="table table-striped table-responsive-md">
            <thead>
            <tr>
                <th scope="col">Id</th>
                <th scope="col">FarmName</th>
                <th scope="col">Player Name</th>
                <th scope="col">Birthday Date</th>
                <th scope="col">Money</th>
                <th scope="col">Day Played</th>
                <th scope="col">Actions</th>
            </tr>
            </thead>
            <tbody>
            <%for (let i = 0; i < farms.length; i++) {%>
                 <tr>
                    <td><%= farms[i]['id'] %></td>
                    <td><%= farms[i]['farmName'] %></td>
                    <td><%= farms[i]['playerName'] %></td>
                    <td><%= farms[i]['birthDayDate'] %></td>
                    <td><%= farms[i]['money'] %></td>
                    <td><%= farms[i]['dayPlayed'] %></td>
                    <td><a href="<%=`/farms/${farms[i]['id']}`%>">Look at Farm</a></td>
                </tr>
            <%}%>
        </table>
    </form>

答案 9 :(得分:0)

要包含 ejs 文件,您必须使用:

<%- include("relative path of ejs ") -%>

答案 10 :(得分:0)

还有 <%- include('partials/header.ejs',{paramName: paramValue}) %>

答案 11 :(得分:-3)

EJS本身目前不允许查看部分。快递呢。