항해99/웹개발종합반PLUS

웹개발종합반PLUS 2주차 -(3)

숲별 2022. 9. 20. 21:48
728x90
$.ajax({
    type: "GET",
    url: `https://cros-anywhere.herokuapp.com/https://owlbot.info/api/v4/dictionary/${word}`,
    beforeSend: function (xhr) {
        xhr.setRequestHeader("Authorization", "Token 2075d3979b9067568e36ee63ee70b1405d50072c");
    },
    data: {},
    error: function (xhr, status, error) {
        alert("에러 발생!");
    },
    success: function (response) {
        console.log(response)
    }
})​

owlbot단어장 가져오기

 

<아이콘 가져올 사이트>

https://fontawesome.com/

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

위에서 코드 복사해서 넣고 밑에 코드도 헤드에 넣어야 함.

<script src="https://kit.fontawesome.com/77ad8525ff.js" crossorigin="anonymous"></script>