- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我使用以下 NodeJS 路线:
server.get('/', function(req, res) {
res.render('index');
});
我的index.jade 文件似乎有一个错误,因为它告诉我:
SyntaxError: Unexpected identifier at Object.Function (unknown source) at Object.compile (/media/Data/development/private/PicoBudget/node_modules/jade/lib/jade.js:160:8) at Function.compile (/media/Data/development/private/PicoBudget/node_modules/express/lib/view.js:68:33) at ServerResponse._render (/media/Data/development/private/PicoBudget/node_modules/express/lib/view.js:417:18) at ServerResponse.render (/media/Data/development/private/PicoBudget/node_modules/express/lib/view.js:318:17) at /media/Data/development/private/PicoBudget/app.js:51:7 at callbacks (/media/Data/development/private/PicoBudget/node_modules/express/lib/router/index.js:272:11) at param (/media/Data/development/private/PicoBudget/node_modules/express/lib/router/index.js:246:11) at pass (/media/Data/development/private/PicoBudget/node_modules/express/lib/router/index.js:253:5) at Router._dispatch (/media/Data/development/private/PicoBudget/node_modules/express/lib/router/index.js:280:5)
这是我的index.jade:
doctype 5
html(lang="en")
head
title= PicoBudget - Expense tracking tool
link(href='bootstrap/css/bootstrap.css', rel='stylesheet')
style(type='text/css')
body {
padding-top: 100px;
padding-bottom: 40px;
}
link(href='bootstrap/css/bootstrap-responsive.css', rel='stylesheet')
link(href='css/main.css', rel='stylesheet')
script(type='text/javascript')
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
body
header
nav
div(class='navbar navbar-fixed-top')
div(class='navbar-inner')
div(class='container')
a(class='btn btn-navbar', data-toggle='collapse', data-target='.nav-collapse')
span(class='icon-bar')
span(class='icon-bar')
span(class='icon-bar')
a(class='brand', href='http://localhost:1337) PicoBudget
div(class='nav-collapse')
ul(class='nav')
li(class='active')
a(href='http://localhost:1337) Home
li
a(href='http://localhost:1337/login) Register
li
a(href='http://localhost:1337/faq) FAQ
li
a(href='http://localhost:1337/about) About
li
a(href='http://localhost:1337/dashboard) Dashboard
form(class='form-inline pull-right, action='http://localhost:1337/authenticated', method='POST')
input(type='text', class='input-small', placeholder='Email' name='emailInput'
input(type='password', class='input-small', placeholder='Password', name='passwordInput')
label(class='checkbox')
input(type='checkbox')
Remember me
button(type='submit', class='btn')
Sign in
div(class='container')
section#content
div(class='hero-unit')
h1 Easily manage your money
p
Ever wondered where your money goes? What do you spend the most money on? PicoBudget is a simple tool which features transactions, budgeting and reporting. Using Basic PicoBudget is absolutely free. If you enjoy it, though, you can get even more features with PicoBudget Premium!
p
Currently PicoBudget is under construction. Feel free to come back to check it out when it launched!
div(class='row')
div(class='span4')
h2 Introduction
p
What is PicoBudget? Who is it for? Why should you use it?
p
a(class='btn', href='http://localhost:1337/introduction')
Read more »
div(class='span4')
h2 FAQ
p
We listed the frequently asked questions. It should cover most of your questions.
p
a(class='btn', href='http://localhost:1337/faq')
View FAQ »
div(class='span4')
h2 Premium
p
With a premium account you get even more features. It already starts from 0.00!
p
a(class='btn', href='http://localhost:1337/premium')
Read more »
hr
footer
p
© PicoBudget.com 2012
script(src='bootstrap/js/bootstrap.js')
script(src='js/libs/jquery-1.7.2.js')
最佳答案
我修复了它:
关于node.js - Jade - 意外的标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11073047/
我想设计两个代理 Agent1 在不同的时间向 Agent2 发送两个消息值。 Agent2 然后根据接收到的值执行操作。 使用 Jade,我尝试编写以下内容: -Agent1 有两个 addBeha
我只是 JADE 的初学者。我想知道如何创建主容器以外的容器并将多个代理添加到其中。完整的创建代码将不胜感激。 谢谢! 最佳答案 如 Tafadzwa Chikudo 回答中所述,启动容器的常用方法是
我正在尝试使用 Jade block ,但我的内容未显示。这是我的 index.jade: //index.jade extends ../includes/layout block main-con
我不知道 Jade 内部是如何工作的,但我猜它会编译每个模板文件一次,然后为每个 HTTP 请求使用编译和缓存的版本。 当我运行我的 Express 应用程序并对我的 *.jade 文件进行更改时,更
我正在制作一个基于 Express 的 Web 应用程序,每次有人访问这个 jade 文件时,我都会收到以下错误: Warning: missing space before text for lin
我正在向 Jade 模板传递一些数据,这些数据采用 JSON 形式,因此例如这里我输出 Jade 模板中所有团队的名称: p Teams: br -for(var i = 0; i < tou
我的 jade.js 文件中有以下内容 'use strict'; var config = require('../config'); module.exports = { dist: {
是否可以从非 JADE 应用程序(用 Java 或 C/C++ 编写)向 JADE 代理/平台发送消息(并从中接收消息)?是否可以通过某种方式向包含符合 FIPA 的 ACL 消息的平台发送 HTTP
我目前正在使用 gulp-jade,我正在努力研究如何在我的 gulpfile.js 中设置 Jade include。(为了澄清,我在这里指的是 http://jade-lang.com/refer
我有一个与 mongodb 集成的 Nodejs 项目。在这里,我创建了一个 jade 文件,其中有从数据库中获取的学生列表。每个学生记录都有一个编辑按钮。因此,当用户单击编辑按钮时,它需要将用户重定
我正在慢慢学习nodejs、express、jade。这就是我想要完成的基本任务: ul.nav - var obj = { 'home':'i.icon-home.icon-white Home
在jade模板引擎中: - 我可以做一个每个循环来包含文件吗?例如 each val in ['file1', 'file2', 'file3'] include val 最佳答案 “您正在
我有一个 View ,其中返回的 MIME 类型各不相同。如何设置标题部分的内容类型? 这是我想做的 !!! html head title #{site.title} - #{site.
框架:node.js/express.js/Jade 问题:在生产环境中,当一个 jade 文件被 express 渲染时,jade 缓存了它,所以 future 的渲染速度会更快。 当我启动 nod
我在 node.js 中有一个网站;要创建一个页面,比如说 mypage 我注意到我需要同时创建一个 layout.jade 和 mypage.jade 文件。如果我将代码放在 mypage.jade
我想将我的数据对象传递给 Jade 文件,但这是不可能的 我的 jade-loader : { test: /\.jade$/, loader: "jade", query: {
约曼/咕噜/ Jade 我的文件夹结构如下: App/ App/jade/user.jade /user.edit.jade /user.details.jade 当
所以我正在做这个项目,我正在使用 gulp。我需要它能够编译我编写的 jade(在 _jadefiles 文件夹中)并将它们作为 .html 输出到我项目的 _includes 文件夹中。 我目前正在
我正在使用 Jade/Express 构建的网站工作了几个星期。我最近为网站组织了图像文件夹,因此所有图像都分布在几个文件夹之间,以便于使用和分类。 为了更轻松地更改图像(和其他此类文件)的层次结构,
是的,我对问这样一个新手问题感到内疚。 app.get('/skumanagement/:id', function (req, res){ var options = req.params
我是一名优秀的程序员,十分优秀!