ajax return얻기

김도형 (르베니아)·2021년 7월 28일
0

웹개발 기초

목록 보기
10/10
post-custom-banner

ajax return값 얻기

ajax는 비동기방식이기때문에 기본적으로 값을 얻을수 없다
하지만

 function showdelivery(num,company) {
            let test = ''
            $.ajax({
                type: "GET",
                url: "",
                async: false,
                data: {},
                success: function (response) {
                    test = response['test']
                    console.log(test)
         
                }
            })
            return test
            
        }

async: false를 추가 return 값을 받아낼수 있다.

profile
한다. 간다. 해낸다.
post-custom-banner

0개의 댓글