“Ekspres JS Redirect ke URL” Kode Jawaban

mengungkapkan pengalihan ke URL

app.get("/where", (req, res) => {
   res.status(301).redirect("https://www.google.com")
}) //You need to include the status (301)
Batman

Ekspres JS Redirect ke URL

window.location.href = "http://mywebsite.com/home.html";
Grepper

mengungkapkan pengalihan ke URL

app.get('/', (req, res) => {
  res.redirect('/about');
})
Busy Bison

mengekspresikan pengalihan

res.redirect('/foo/bar')
res.redirect('http://example.com')
res.redirect(301, 'http://example.com')
res.redirect('../login')
Defeated Dog

Ekspresikan URL Redirect

const app = require('express')();

// The `res.redirect()` function sends back an HTTP 302 by default.
// When an HTTP client receives a response with status 302, it will send
// an HTTP request to the URL in the response, in this case `/to`
app.get('/from', (req, res) => {
  res.redirect('/to');
});
app.get('/to', (req, res) => res.send('Hello, World!'));
Salo Hopeless

Jawaban yang mirip dengan “Ekspres JS Redirect ke URL”

Pertanyaan yang mirip dengan “Ekspres JS Redirect ke URL”

Lebih banyak jawaban terkait untuk “Ekspres JS Redirect ke URL” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya