“express return 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 return html -файл”

Вопросы похожие на “express return html -файл”

Больше похожих ответов на “express return html -файл” по JavaScript

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

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