더북(TheBook)

5.6.1.1 변수

넌적스에서 변수는 {{ }}로 감쌉니다. 앞에서 res.render('index', { title: 'Express' })를 했으므로 {{title}} 자리에 Express가 들어가게 됩니다.

넌적스

<h1>{{title}}</h1>
<p>Welcome to {{title}}</p>
<button class="{{title}}" type="submit">전송</button>
<input placeholder="{{title}} 연습" />

위 코드는 다음과 같이 HTML로 변환됩니다.

HTML

<h1>Express</h1>
<p>Welcome to Express</p>
<button class="Express" type="submit">전송</button>
<input placeholder="Express 연습" />