πŸ‘Ά 내일배움단/μ›Ήκ°œλ°œ μ’…ν•© κ°œλ°œμΌμ§€

[슀파λ₯΄νƒ€μ½”λ”©ν΄λŸ½] μ›Ήκ°œλ°œ μ’…ν•©λ°˜ - 2μ£Όμ°¨ κ°œλ°œμΌμ§€ / μˆ™μ œ(μ‹€μŠ΅/풀이)

  • -
 

배운 λ‚΄μš©μ„ 가지고 1μ£Όμ°¨ μ™„μ„±ν–ˆλ˜ μ½”λ“œμ— λŒ€μž…ν•΄λ³΄μž!

 

ν‰μ†Œμ™€ 같은 λ§ˆμΈλ“œλ‘œ μž„ν–ˆλ‹€..

 

κ²°κ³ΌλŠ” 성곡적..!!

 

μ΄μ˜€μ§€λ§Œ.. 풀이해섀을 λ³΄λ‹ˆ.. λ‚΄ μ½”λ“œλŠ” μ‘μ• λΌλŠ” 것을 μ•Œ 수 μžˆμ—ˆλ‹€.. (유감)

 


 

μ‹€μŠ΅)

<script>
	$(document).ready(function () {
            q1()
        });

        function q1() {
            $.ajax({
                type: "GET",
                url: "http://spartacodingclub.shop/sparta_api/rate",
                data: {},
                success: function (response) {
                    let doller = response[`rate`]

                    let temp_html = `<h3 class="dollar">λ‹¬λŸ¬ : 원 / ν™˜μœ¨ : ${doller}</h3>`
                    $('#now_doller').append(temp_html)
                }
            })
        }
</script>

 

 

생각은 μ΄λŸ¬ν–ˆλ‹€.

 

μƒˆλ‘œκ³ μΉ¨ μ‹œ μ‹€μ‹œκ°„μœΌλ‘œ 결과값을 λ°”κΏ”μ£ΌλŠ” μ½”λ“œ

$(document).ready(function () {
    q1()
});

 

 

ν™˜μœ¨μ— λŒ€ν•œ μ •λ³΄λŠ” q1 μ΄λΌλŠ” λ³€μˆ˜μ— λ‹΄μ•˜λ‹€.

아싸리 ν™˜μœ¨ 정보에 λŒ€ν•œ ν…μŠ€νŠΈλ₯Ό λ°˜μ˜ν•˜κ³  κ·Έ 뒀에 λΆ™μ΄λŠ” 방법을 μ²΄νƒν–ˆλ‹€.

function q1() {
    $.ajax({
        type: "GET",
        url: "http://spartacodingclub.shop/sparta_api/rate",
        data: {},
        success: function (response) {
            let doller = response[`rate`]

            let temp_html = `<h3 class="dollar">λ‹¬λŸ¬ : 원 / ν™˜μœ¨ : ${doller}</h3>`
            $('#now_doller').append(temp_html)
        }
    })
}

 

 

ν™˜μœ¨μ΄ λ“€μ–΄κ°ˆ λ¬Έλ‹¨μ˜ μˆœμ„œλŠ” id = "now_doller" 둜 μ§€μ •ν•΄μ„œ μž‘μ•„λ‘μ—ˆλ‹€.

<h3 id="now_doller"></h3>

 

 

κ²°κ³ΌλŠ” 잘만 λ˜μ—ˆλ‹€ ^^

흑쑱

 

 

이제 풀이λ₯Ό 보자면..

 

풀이)

    <script>
        $(document).ready(function () {
            get_rate();
        });

        function get_rate(){
            $.ajax({
                type: "GET",
                url: "http://spartacodingclub.shop/sparta_api/rate",
                data: {},
                success: function (response) {
                    let now_rate = response['rate'];
                    $('#now-rate').text(now_rate);
                }
            })
        }
    </script>

 

<p class="rate">λ‹¬λŸ¬-원 ν™˜μœ¨: <span id="now-rate">1219.15</span></p>

 

μ—¬μœ½μ‹œ μŠ¨μƒλ‹˜~~!!!

 

단쑰둭고 더 μ‹€μš©μ μΈ!!! 보기에도 νŽΈν•œ μ½”λ“œ!!!

 

내것)

let temp_html = `<h3 class="dollar">λ‹¬λŸ¬ : 원 / ν™˜μœ¨ : ${doller}</h3>`
$('#now_doller').append(temp_html)

 

풀이)

$('#now-rate').text(now_rate);
<p class="rate">λ‹¬λŸ¬-원 ν™˜μœ¨: <span id="now-rate">1219.15</span></p>

 

λ‚˜μ²˜λŸΌ λ­”κ°€ λ³€μˆ˜λ₯Ό 더 쀄 μ—¬μœ μ‘°μ°¨ 주지 μ•Šκ³  λ°”λ‘œ 결과값을 λ‚΄λ €λ²„λ¦¬λŠ” 이 μ„ΌμŠ€..

 

보기에도 ꡳ이 κΈΈμ–΄μ§ˆ ν•„μš” 없이 λ”± κΉ”λ”ν•˜κ²Œ ν‘œν˜„ν•˜μ‹  것 κ°™λ‹€..

 

 


 

2μ£Όμ°¨λ₯Ό 달리고 μžˆλ‹€.

 

ν˜„μƒ 1주일뿐이 μ•ˆμ§€λ‚¬λŠ”λ° 2μ£Όμ°¨..? 라고 ν•  수 μžˆλŠ”λ°,

 

κ°•μ˜ 진도λ₯Ό 쭈욱 뺐닀 ^^

 

응애 μ½”λ“œλ‘œ λΉ„λΉ„κ³  μžˆμ§€λ§Œ, κ·Έλž˜λ„ 아직 μž¬λ―Έλ„ 있고 ν¬κΈ°ν•˜κ³  싢지 μ•Šλ‹€!!

 

더.. λ§Žμ€ 것을 보고 배우고 λ§Žμ€ μ§€μ‹μœΌλ‘œ κ±°λ“­λ‚˜μ„œ

 

λ‚˜λ„ μ’€ λ­”κ°€ 효율적인 μ½”λ“œλ₯Ό 짜보고 μ‹Άλ‹€ :)

 

+ μ–΄λŠμ •λ„ μ½”λ“œ νλ¦„μ΄λ‚˜ μ•„ μ΄λ ‡κ²Œ λŒμ•„κ°€λŠ”κ΅¬λ‚˜ λ₯Ό μ•Œκ³  λ³΄λ‹ˆκΉŒ μž¬λ°Œλ„€?

근데 μ–΄λ ΅λ„€? ^^

[μ•…μˆœν™˜]

 

Contents

ν¬μŠ€νŒ… μ£Όμ†Œλ₯Ό λ³΅μ‚¬ν–ˆμŠ΅λ‹ˆλ‹€

이 글이 도움이 λ˜μ—ˆλ‹€λ©΄ 곡감 λΆ€νƒλ“œλ¦½λ‹ˆλ‹€.