“Envie o arquivo HTML Express” Respostas de código

Envie o arquivo HTML Express

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

EXPREST Enviar arquivo html

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

arquivo html de retorno expresso

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

Express Enviar HTML da String

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

Respostas semelhantes a “Envie o arquivo HTML Express”

Perguntas semelhantes a “Envie o arquivo HTML Express”

Mais respostas relacionadas para “Envie o arquivo HTML Express” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código