如何使用脚本。在 JADE 模板中
How to use script. in JADE templates
我已经使用 JADE 模板使用 express 框架创建了一个简单的节点应用程序。
在我开始尝试 运行 一些我不知道该怎么做的客户端 js 之前,在学习过程中一切都很好。
我需要在我的 app/index.js 中做些什么来告诉节点它们吗?任何帮助将不胜感激。
谢谢
index.jade
extends layout
block content
h1 Title
script.
console.log("I am running on the client");
app.js
var http = require("http")
var express = require("express")
var path = require('path');
var routes = require('./routes/index');
var app = express()
var port = process.env.PORT || 5000
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', routes);
var server = http.createServer(app)
server.listen(port)
console.log("http server listening on %d", port)
module.exports = app;
layout.jade
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/stylesheets/bootstrap.css')
link(rel='stylesheet', href='/stylesheets/style.css')
script(src='/javascripts/jquery-2.1.3.js')
script(src='/javascripts/bootstrap.js')
body
div(class="navbar navbar-inverse navbar-fixed-top")
.container
.navbar-header
button.navbar-toggle(type="button", data-toggle="collapse", data-target=".navbar-collapse")
span.icon-bar
span.icon-bar
span.icon-bar
a.navbar-brand(href="/") Twitter
div(class="collapse navbar-collapse")
ul(class="nav navbar-nav")
li.active
a(href="#") Home
li
a(href="#about") About
li
a(href="#contact") Contact
block content
任何内联脚本都可以像这样运行
script.
if (usingJade)
console.log('you are awesome')
else
console.log('use jade')
来自 Docs。
任何外部 JS 文件都可以像这样加载:
script(src="/path/to/script.js")
另外,您可能想确定您确实在使用布局文件。 Jade 建议这样做:
extends ./layout.jade
您有文件的路径并附加了扩展名。尽管扩展名可能是可选的,因为您在 app.js
.
中指定了 jade 引擎
告诉我这有帮助!
我已经使用 JADE 模板使用 express 框架创建了一个简单的节点应用程序。
在我开始尝试 运行 一些我不知道该怎么做的客户端 js 之前,在学习过程中一切都很好。
我需要在我的 app/index.js 中做些什么来告诉节点它们吗?任何帮助将不胜感激。
谢谢
index.jade
extends layout
block content
h1 Title
script.
console.log("I am running on the client");
app.js
var http = require("http")
var express = require("express")
var path = require('path');
var routes = require('./routes/index');
var app = express()
var port = process.env.PORT || 5000
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', routes);
var server = http.createServer(app)
server.listen(port)
console.log("http server listening on %d", port)
module.exports = app;
layout.jade
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/stylesheets/bootstrap.css')
link(rel='stylesheet', href='/stylesheets/style.css')
script(src='/javascripts/jquery-2.1.3.js')
script(src='/javascripts/bootstrap.js')
body
div(class="navbar navbar-inverse navbar-fixed-top")
.container
.navbar-header
button.navbar-toggle(type="button", data-toggle="collapse", data-target=".navbar-collapse")
span.icon-bar
span.icon-bar
span.icon-bar
a.navbar-brand(href="/") Twitter
div(class="collapse navbar-collapse")
ul(class="nav navbar-nav")
li.active
a(href="#") Home
li
a(href="#about") About
li
a(href="#contact") Contact
block content
任何内联脚本都可以像这样运行
script.
if (usingJade)
console.log('you are awesome')
else
console.log('use jade')
来自 Docs。
任何外部 JS 文件都可以像这样加载:
script(src="/path/to/script.js")
另外,您可能想确定您确实在使用布局文件。 Jade 建议这样做:
extends ./layout.jade
您有文件的路径并附加了扩展名。尽管扩展名可能是可选的,因为您在 app.js
.
告诉我这有帮助!