“Express Отправить html -файл” Ответ

Отправить html file Express

res.sendFile(path.join(__dirname + '/index.html'));
Lucky Lapwing

Express Отправить html -файл

app.get('/test', function(req, res) {
    res.sendFile('test.html', {root: __dirname })
});
joakimjohansson.se

express return html -файл

//res.sendFile(path [, options] [, fn])
app.get('/test', function(req, res) {
    res.sendFile('test.html')
});
ofroog

Express Отправить HTML из строки

// Express.JS: Send HTML from string
res.send(`
  <h1>Welcome</h1>
  <h2>Scroll to learn more</h2>
`);
KostasX

Ответы похожие на “Express Отправить html -файл”

Вопросы похожие на “Express Отправить html -файл”

Смотреть популярные ответы по языку

Смотреть другие языки программирования