// GET /search?q=something
console.dir(req.originalUrl)
// => '/search?q=something'
req.originalUrl is available both in middleware and router objects, and is a combination of req.baseUrl and req.url. Consider following example:
app.use('/admin', function (req, res, next) { // GET 'http://www.example.com/admin/new?sort=desc'
console.dir(req.originalUrl) // '/admin/new?sort=desc'
console.dir(req.baseUrl) // '/admin'
console.dir(req.path) // '/new'
next()
})
url = scheme + domain + baseUrl + path + query (etc.) [originalUrl]
the Chinese domain “短. co” is represented in Punycode as “xn--s7y.co”
German city of “München” becomes the Punycode “xn--mnchen-3ya” because the letter ü is not available in English.
Note: You can convert text on a site like Punycoder to see how other names are converted.
FileList 객체
DataTransfer (en-US) 객체 혹은 HTMLCanvasElement의 mozGetAsFile() API
FileReader.error
FileReader.readySTate
FileReader.result
FileReader.onload