Express for Node.js를 사용할 때 줄 바꿈 문자 나 탭없이 HTML 코드를 출력한다는 것을 알았습니다. 다운로드하는 것이 더 효율적일 수 있지만 개발 중에는 읽기가 쉽지 않습니다.
Express에서 멋진 형식의 HTML을 출력하려면 어떻게해야합니까?
답변
당신의 메인 app.js
또는 그 장소에있는 것 :
익스프레스 4.x
if (app.get('env') === 'development') {
app.locals.pretty = true;
}
Express 3.x
app.configure('development', function(){
app.use(express.errorHandler());
app.locals.pretty = true;
});
익스프레스 2.x
app.configure('development', function(){
app.use(express.errorHandler());
app.set('view options', { pretty: true });
});
development
의 ‘못생긴’으로 더 많은 효율성을 원하기 때문에 예쁜 글씨를 넣었 습니다 production
. NODE_ENV=production
프로덕션 환경에 배포 할 때는 환경 변수를 설정하십시오 . 이것은 sh
‘스크립트’필드에서 사용 package.json
하고 시작하기 위해 실행 되는 스크립트 로 수행 할 수 있습니다 .
Express 3 는 다음과 같은 이유로이를 변경 했습니다.
“view options”설정은 더 이상 필요하지 않으며 app.locals는 res.render ()와 병합 된 로컬 변수이므로 [app.locals.pretty = true는 res.render (view, {pretty : 진실 }).
답변
Jade / Express에서 html 출력을 “pretty-format”하려면 :
app.set('view options', { pretty: true });
답변
express 4.x에서 이것을 app.js에 추가하십시오.
if (app.get('env') === 'development') {
app.locals.pretty = true;
}
답변
Jade 자체에는 “pretty”옵션이 있습니다.
var jade = require("jade");
var jade_string = [
"!!! 5",
"html",
" body",
" #foo I am a foo div!"
].join("\n");
var fn = jade.compile(jade_string, { pretty: true });
console.log( fn() );
… 너에게 이것을 준다 :
<!DOCTYPE html>
<html>
<body>
<div id="foo">I am a foo div!
</div>
</body>
</html>
나는 매우 정교하지는 않지만 내가 보는 것-실제로보기에서 생성하는 HTML을 디버깅 할 수있는 능력-괜찮습니다.
답변
콘솔을 사용하여 컴파일하는 경우 다음과 같은 것을 사용할 수 있습니다.
$ jade views/ --out html --pretty
답변
멋진 형식의 HTML이 정말로 필요합니까? 한 편집기에서 멋지게 보이는 것을 출력하려고해도 다른 편집기에서는 이상하게 보일 수 있습니다. 물론 html이 필요한지 모르겠지만 Firefox 용 Chrome 개발 도구 또는 Firebug를 사용해 보려고합니다. 이러한 도구를 사용하면 HTML 대신 DOM을 잘 볼 수 있습니다.
정말 멋진 형식의 html이 필요한 경우 jade 대신 EJS를 사용해보십시오. 그것은 당신이 HTML을 직접 포맷해야한다는 것을 의미합니다.
답변
깔끔하게 사용할 수 있습니다
이 옥 파일을 예로 들어 보겠습니다.
foo.jade
h1 MyTitle
p
a(class='button', href='/users/') show users
table
thead
tr
th Name
th Email
tbody
- var items = [{name:'Foo',email:'foo@bar'}, {name:'Bar',email:'bar@bar'}]
- each item in items
tr
td= item.name
td= item.email
이제 testjade.js foo.jade> output.html 노드로 처리 할 수 있습니다 :
testjade.js
var jade = require('jade');
var jadeFile = process.argv[2];
jade.renderFile(__dirname + '/' + jadeFile, options, function(err, html){
console.log(html);
});
당신에게 s.th를 줄 것입니다. 처럼:
output.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>My Title</title><link rel="stylesheet" href="https://stackoverflow.com/stylesheets/style.css"/><script type="text/javascript" src="../js/jquery-1.4.4.min.js"></script></head><body><div id="main"><div ><h1>MyTitle</h1><p><a href="/users/" class="button">show users</a></p><table><thead><tr><th>Name</th><th>Email</th></tr></thead><tbody><tr><td>Foo</td><td>foo@bar</td></tr><tr><td>Bar</td><td>bar@bar</td></tr></tbody></table></div></div></body></html
그런 다음 tidy -m output.html 을 사용 하여 깔끔하게 실행하면 다음과 같은 결과가 발생합니다.
output.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
<title>My Title</title>
<link rel="stylesheet" href="/stylesheets/style.css" type=
"text/css" />
<script type="text/javascript" src="../js/jquery-1.4.4.min.js">
</script>
</head>
<body>
<div id="main">
<div>
<h1>MyTitle</h1>
<p><a href="/users/" class="button">show users</a></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Foo</td>
<td>foo@bar</td>
</tr>
<tr>
<td>Bar</td>
<td>bar@bar</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>