Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lacolaco committed Jun 1, 2022
1 parent db0af61 commit 5c02068
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
32 changes: 32 additions & 0 deletions source/use-case/ajaxapp/entrypoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,38 @@ JavaScriptとDOMはWebアプリケーション開発において切っても切
- `index.js`からコンソールに出力されたログを確認した
- JavaScriptからHTMLドキュメントを操作するDOMについて学んだ

ここまでのアプリは次のURLで確認できます。

- <https://jsprimer.net/use-case/ajaxapp/entrypoint/src/>

<!-- sandpack:{
"files": {
"/index.js": {
"path": "src/index.js"
},
"/index.html": {
"path": "src/index.html",
"active": true
},
"/src/index.js": {
"code": "/* このファイルは本編とは無関係のファイルなので無視してください。 本編のindex.jsは一つ上のディレクトリにあります */",
"hidden": true
}
},
"entry": "/index.js",
"main": "/index.js",
"environment": "static",
"template": "vanilla",
"options": {
"showLineNumbers": true,
"editorHeight": 550
},
"honkitSettings": {
"isOpen": true,
"hideExitButton": true
}
} -->

[Same Origin Policy]: https://developer.mozilla.org/ja/docs/Web/Security/Same-origin_policy
[アプリケーション開発の準備]: ../../setup-local-env/README.md
[Webコンソールを開く]: https://developer.mozilla.org/ja/docs/Tools/Web_Console/Opening_the_Web_Console
Expand Down
34 changes: 34 additions & 0 deletions source/use-case/ajaxapp/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,40 @@ XHRの詳しい使い方については、[XHRの利用についてのドキュ
- Fetch APIの呼び出しに対するエラーハンドリングを行った
- `fetchUserInfo`関数を宣言し、ボタンのクリックイベントで呼び出した

ここまでのアプリは次のURLで確認できます。

- <https://jsprimer.net/use-case/ajaxapp/http/src/>

<!-- FIXME: なぜかindex.jsで宣言した関数が見つからない -->

<!-- sandpack:{
"files": {
"/index.js": {
"path": "src/index.js"
},
"/index.html": {
"path": "src/index.html",
"active": true
},
"/src/index.js": {
"code": "/* このファイルは本編とは無関係のファイルなので無視してください。 本編のindex.jsは一つ上のディレクトリにあります */",
"hidden": true
}
},
"entry": "/index.js",
"main": "/index.js",
"environment": "static",
"template": "vanilla",
"options": {
"showLineNumbers": true,
"editorHeight": 550
},
"honkitSettings": {
"isOpen": true,
"hideExitButton": true
}
} -->

[Fetch API]: https://developer.mozilla.org/ja/docs/Web/API/Fetch_API
[XMLHttpRequest]: https://developer.mozilla.org/ja/docs/Web/API/XMLHttpRequest
[XHRの利用についてのドキュメント]: https://developer.mozilla.org/ja/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest

0 comments on commit 5c02068

Please sign in to comment.