Authored by happyhour7

partials更新

var express = require('express');
var path = require('path');
var ejs = require('hbs');
var hbs = require('hbs');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
... ... @@ -9,17 +9,17 @@ var init=require('YJS');
var routes = require('./routes/index');
var users = require('./routes/users');
var pjax = require('express-pjax');
var partials = require('express-partials');
//var partials = require('express-partials');
var app = express();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.engine('html', ejs.__express);
app.engine('html', hbs.__express);
app.set('view engine', 'html');
// uncomment after placing your favicon in /public
app.use(favicon(__dirname + '/public/favicon.ico'));
hbs.registerPartials(__dirname + '/views/partials');
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
... ...
这是girls的真正页面!!!!!!!!!!!!!!
\ No newline at end of file
... ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Web Project</title>
<link href="http://localhost/dist/css/todolist.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="http://localhost/dist/css/login.css" />
</head>
<body>
<%-body%>
</body>
</html>
... ... @@ -9,6 +9,7 @@
</head>
<body>
{{{body}}}
<script type="text/javascript" src="http://localhost:8000/dist/yohogirls-frontend-web/0.0.1/seajs.js?nowrap"></script>
</body>
<script type="text/javascript" src="http://localhost:8000/dist/yohogirls-frontend-web/0.0.1/seajs.js?nowrap"></script>
{{>test}}
</html>
\ No newline at end of file
... ...
test.partials
\ No newline at end of file
... ...