W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
全局變量是存儲在 harp.json
文件中的 JSON 數(shù)據(jù),對所有的頁面、模板、局部視圖以及布局文件可用。
Harp 不僅僅只是靜態(tài)文件,頁面也可以通過動態(tài)內(nèi)容創(chuàng)建。像全局屬性中添加內(nèi)容是天生可取的。
harp.json
{
"globals": {
"title": "Acme Site",
"name" : "John Doe",
"uri": "http://example.com"
}
}
index.jade
html
head
title #{ title }
body
h1 Hello #{ name }!
index.ejs
<html>
<head>
<title><%= title %></title>
</head>
<body>
<h1>Hello <%= name %>!</h1>
</body>
</html>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: