0
我是新的Node Js。我想從服務器端傳遞一個變量到客戶端。到目前爲止,我嘗試這樣做:傳遞從服務器到客戶端的渲染參數 - 節點Js
server.js
app.get('/configuration', function (req, res) {
res.render('configuration.html',{ name: "example" });
})
configuration.html
<!DOCTYPE html>
<html>
<head>
<title>Welcome in the configuration panel</title>
</head>
<body>
<h1>Configuration panel</h1>
<h2>{{ name }}</h2>
<h5>White list</h5>
<textarea rows="4" cols="50">
This is a try!!!
</textarea>
</body>
</html>
它不會出現在標籤中的文字 「榜樣」。我怎麼寫我想展示它的內容?
謝謝!
我正在使用EJS模塊,但不知道如何從服務器獲取變量。 – Joe