伙计们我正在使用云端9中的节点/快速应用程序。https://webdevcamp-miatech.c9users.io/但是,我的home.ejs文件中的包含文件无效。我有一个header.ejs和footer.ejs,我将其包含在我的home.ejs文件中。但是当我去默认路线“/”回家时。它给了我。这是c9.io上的应用https://ide.c9.io/miatech/webdevcamp 此错误消息。
Error: Could not find include include file.
at getIncludePath (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:152:13)
at includeSource (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:276:17)
at /home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:629:26
at Array.forEach (native)
at Object.generateSource (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:605:15)
at Object.compile (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:509:12)
at Object.compile (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:358:16)
at handleCache (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:201:18)
at tryHandleCache (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:223:14)
at View.exports.renderFile [as engine] (/home/ubuntu/workspace/EJSDemo/node_modules/ejs/lib/ejs.js:437:10)
如果我从home.ejs中删除了页脚和页眉的包含,它就会被修复。所以它必须是我包括它的方式或路径。如果有人可以帮忙。谢谢 home.ejs
<% include ./partials/header %>
<h1>Hello World</h1>
<img src="http://lorempixel.com/400/200/">
<% include ./partials/footer %>
header.ejs
<!DOCTYPE html>
<html>
<head>
<title>EJSDemo</title>
<link rel="stylesheet" type="text/css" href="/app.css">
</head>
<body>
footer.ejs
<p>trademark 2018</p>
</body>
</html>
最后是我的app.js
var express = require("express");
var app = express();
//tell express to serve the content of public dir
app.use(express.static("public"));
app.set("view engine", "ejs");
//default app route
app.get("/", function(req, res) {
res.render("home.ejs");
});
// /fallinlove route
app.get("/fallinlove/:thing", function(req, res) {
var thing = req.params.thing;
//rendering love.ejs and passing variable to template
res.render("love.ejs", {thingVar:thing});
});
// /post route
app.get("/posts", function(req, res) {
var posts = [
{title: "Post 1 ", author: "Charlie"},
{title: "My adorable pet bunny", author: "Susy"},
{title: "Can you believe this pomsky?", author: "Colt"}
]
res.render("posts.ejs", {posts: posts});
});
//start server
app.listen(process.env.PORT, process.env.IP, function() {
console.log("server started!..");
});
答案 0 :(得分:3)
对于面临该问题的任何人,新语法都是
<%- include('partials/header') %>
提示:您应该包括:
app.set("view engine", "ejs");
答案 1 :(得分:0)
我遇到了同样的问题,这种新的EJS语法可以正常工作。
// <%- include("partials/header") %>
// <%- include("partials/footer") %>
答案 2 :(得分:0)
我遇到了同样的问题,但是以下代码对我有用
<%- include('header'); -%>
<!-- your HTML code -->
<%- include('footer'); -%>
答案 3 :(得分:-1)
我不能说没有看到您的文件夹结构,但最可能的问题可能是您在<% include ./partials/header.ejs %>
中提供的路径。通过提供此路径,您告诉 ejs partials 文件夹和 home.ejs 文件位于同一目录中。
修改您的问题,向我们展示文件夹的整理方式。一旦你这样做,我们就可以排除这个问题。
编辑:其他模板中的包含是否有效?或者只是 home.ejs ?