ajax 요청 node 서버 기본 동작

ajax 로 get 요청 보 내기
 var xhr = new XMLHttpRequest()
        xhr.open('get', 'http://localhost:3000/first')
        xhr.send()
        xhr.onload = function() {
            console.log(xhr.responseText)
        }

새 app. js 파일 npm install express - s express 모듈 다운로드
const express = require('express')
const path = require('path')
let app = express()
    //      
app.use(express.static(path.join(__dirname, 'public')))

app.get('/first', (req, res) => {
    res.send('hello ajax')
})

app.listen(3000)
console.log('       ')

브 라 우 저 포트 를 열 면 백 엔 드 응답 데 이 터 를 볼 수 있 습 니 다.

좋은 웹페이지 즐겨찾기