<form action="sdfsdf" method="post">
</form>
$.get('https://codingapple1.github.io/hello.txt').
done(function(data) {
console.log(data);
}).
fail(function() {
console.log("실패함");
})
script tag에 위와 같은 동작을 코딩해주면 된다.
코딩애플에서 만들어준 서버에 저렇게 get 요청해보자.
done : ajax에서 요청한 method 성공 시 실행된다.
fail : 요청 method 실패 시 실행된다.
$.post('https://codingapple1.github.io/hello.txt', {"name": lotto}).
done(function(data) {
console.log(data);
})
fetch('https://codingapple1.github.io/hello.txt').
then(res => res.json()).
then(data => {
console.log(data);
}).
catch(error => {
console.log(error);
})
<div class="container">
<button class="btn btn-danger" id="more">더보기</button>
</div>
<script>
$('.more').click(function() {
console.log(1);
$.get("https://codingapple1.github.io/js/more1.json").
done((products) => {
console.log(products);
products.forEach((product) => {
var template =
`<div class="col-sm-4">
<img src="https://via.placeholder.com/600" class="w-100">
<h5>${product.title}</h5>
<p>가격 : ${product.price}</p>
</div>`;
$('.row').append(template);
})
})
})
</script>