반응형
fetch("test.php")
.then((response) => response.json())
.then((data) => {
console.log(data);
$.each(data, function (idx) {
console.log("name=>"+data[idx]["name"]+" / addr=>"+data[idx]["addr"]);
});
});
html 파일에서 jquery를 이용해서 호출할때는 이렇게 하면 된다.
그러면 test.php도 확인해보자.
<?php
$data = [
["name" => "hong", "addr" => "first"],
["name" => "gil", "addr" => "second"],
["name" => "dong", "addr" => "third"]
];
header("Content-Type: application/json");
echo json_encode($data);
?>
이렇게 만들어주면 된다.
반응형
'javascript&jquery' 카테고리의 다른 글
flowplayer 모바일에서 영상 화면 터치시 이벤트 (0) | 2024.01.25 |
---|---|
[PHP]첨부파일 확장자및 용량 알아내기 (0) | 2023.06.26 |
jquery에서 ajax로 가져온 데이터를 html로 입력하려고 하는데 입력 안될때 (0) | 2021.08.17 |
모든 이미지에 워터마크 넣기 (0) | 2021.07.27 |
html, css만으로 이미지에 레이어로 워터마크 비스듬히 쓰기 (0) | 2021.07.27 |