Questions tagged «header»

26
Node.js හි, මගේ අනෙක් ලිපිගොනු වල කාර්යයන් “ඇතුළත් කරන්නේ” කෙසේද?
මට app.js නමින් ගොනුවක් ඇති බව කියමු. ඉතා සරලයි: var express = require('express'); var app = express.createServer(); app.set('views', __dirname + '/views'); app.set('view engine', 'ejs'); app.get('/', function(req, res){ res.render('index', {locals: { title: 'NowJS + Express Example' }}); }); app.listen(8080); මට "tools.js" තුළ ශ්‍රිතයක් තිබේ නම් කුමක් කළ යුතුද? Apps.js හි භාවිතා …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.