fs
открываем файл и передаем его в writehtml
документе, который отправили клиенту) уже оставить ссылки или что, чтобы он сделал запрос на сервер для подставления текста с сервера в наш h1
? var httpServer = http.createServer(function (req, res) {
fileName = req.url;
if(fileName == "/") {
console.log("hello");
}
var data = fs.readFile("index.html", function(err, file) {
res.writeHead(200,{"Content-type":"text/html"});
res.write(file);
console.log(req.url);
res.end();
});
}).listen(8000);
First argument must be a string or Buffer.
var httpServer = http.createServer(function (req, res) {
fileName = req.url;
if(fileName == "/") {
fileName = "index.html";
}
var data = fs.readFile(fileName, function(err, file) {
res.writeHead(200,{"Content-type":"text/html"});
res.write(file);
console.log(req.url);
res.end();
});
}).listen(8000);
Как отдать css? Как ни странно - прочесть файл style.css c диска и отправить
class Musician(models.Model):
first_name = models.CharField(max_length=50)
Model
, а model
это путь к нему, почему выходит так, что в нашем классе мы присваиваем models.CharField(max_length=50)
, а не Model.CharField(max_length=50)
?