Week02. AJAX
1831 ワード
★あら捜しの末期
サーバとクライアント
サーバ-クライアント通信
{
"squadName": "Super hero squad",
"homeTown": "Metro City",
"formed": 2016,
"secretBase": "Super tower",
"active": true,
"members": [
{
"name": "Molecule Man",
"age": 29,
"secretIdentity": "Dan Jukes",
"powers": [
"Radiation resistance",
"Turning tiny",
"Radiation blast"
]
}
출처: https://developer.mozilla.org/ko/docs/Learn/JavaScript/Objects/JSON
ex)https://www.google.com/search?q=iphone&newwindow=1分割
https://www.google.com/search
データが作成され、サーバに送信されます(以下?)
q=iPhoneと(&)newwindow=1.
AJAX
AJAXの定義
$.ajax({
type: "GET", // 어떤 방식으로 요청 할 것인지
url: "url",
data: {}, // 요청하면서 함께 줄 데이터 (GET 요청시엔 공란)
success: function(변수){ // 서버에서 받은 결과를 변수에 담음. 보통 response 많이 씀
//내용 작성
}
})
Reference
この問題について(Week02. AJAX), 我々は、より多くの情報をここで見つけました https://velog.io/@yoonee1126/D-45テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol