Câu hỏi được gắn thẻ «ejs»




3
Hiển thị một biến dưới dạng HTML trong EJS
Tôi đang sử dụng thư viện Biểu mẫu cho Node.js ( Biểu mẫu ), thư viện này sẽ hiển thị biểu mẫu cho tôi trên chương trình phụ trợ như sau: var signup_form = forms.create({ username: fields.string({required: true}) , password: fields.password({required: true}) , confirm: fields.password({ required: true , validators: [validators.matchField('password')] …
97 node.js  express  ejs 

29
Lỗi: Không thể tìm thấy mô-đun 'ejs'
Đây là lỗi hoàn toàn của tôi: Error: Cannot find module 'ejs' at Function._resolveFilename (module.js:317:11) at Function._load (module.js:262:25) at require (module.js:346:19) at View.templateEngine (/Users/shamoon/local/node/lib/node_modules/express/lib/view/view.js:133:38) at Function.compile (/Users/shamoon/local/node/lib/node_modules/express/lib/view.js:65:17) at ServerResponse._render (/Users/shamoon/local/node/lib/node_modules/express/lib/view.js:414:18) at ServerResponse.render (/Users/shamoon/local/node/lib/node_modules/express/lib/view.js:315:17) at /Users/shamoon/Sites/soldhere.in/app.js:26:7 at callbacks (/Users/shamoon/local/node/lib/node_modules/express/lib/router/index.js:272:11) at param (/Users/shamoon/local/node/lib/node_modules/express/lib/router/index.js:246:11) Mã nguồn của tôi cũng rất đơn giản: var …
84 node.js  express  ejs 

8
Làm thế nào để tạo các biến toàn cục có thể truy cập được trong tất cả các chế độ xem bằng Express / Node.JS?
Ok, vậy là tôi đã xây dựng một blog bằng Jekyll và bạn có thể xác định các biến trong một tệp _config.ymlcó thể truy cập được trong tất cả các mẫu / bố cục. Tôi hiện đang sử dụng Node.JS / Express với các mẫu EJS và ejs-local (cho …

3
Express và ejs <% = để hiển thị JSON
Trong index.ejs của tôi, tôi có mã này: var current_user = &lt;%= user %&gt; Trong nút của tôi, tôi có app.get("/", function(req, res){ res.locals.user = req.user res.render("index") }) Tuy nhiên, trên trang tôi có được var current_user = [object Object] và nếu tôi viết var current_user = &lt;%= JSON.stringify(user) %&gt; …
77 javascript  json  express  ejs 
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.