We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qithub-BOT/mastogetter#62 (comment) でES Moduleを使うコードを書いている時、HTMLから読み込むのはエントリーポイントのみなのか、JavaScript側でimportしているものも書かないといけないのかわからなかった
https://jsprimer.net/basic/module/#run-es-modules
にはHTMLからのES Moduleの読み込みについて触れられているが、背景で述べたような問題についてヒントとなる文章はない。
そこから飛ばされている https://jsprimer.net/use-case/todoapp/entrypoint/ でも明示はないが https://jsprimer.net/use-case/todoapp/entrypoint/#module-entry-point の項でHTMLに変更を加える指示がないことから不要なのだろうと察することができる。
どこかにこのことについて明示できないか?
The text was updated successfully, but these errors were encountered:
そう言えばこのissueを忘れていました。改めて確認して特段変化がないことが確認できました。なにかこの件について進捗などありますか? @azu
Sorry, something went wrong.
そのため、HTMLではscript要素でindex.jsのみを読み込み、このindex.jsからimport文で他のモジュールを読み込みます。 https://jsprimer.net/use-case/todoapp/entrypoint/
とありますが、
https://jsprimer.net/use-case/todoapp/entrypoint/#module-entry-point
この辺にも再度明示的に書くというイメージですかね。 moduleではないscriptロード(歴史的な<scrript src=...></script>)の仕組みが知識としてある場合に、混乱しやすいという感じですかね?
<scrript src=...></script>
そうですね。いままではそっちに全部書いていたのでやはり脳みそがついていかない感覚がありました。
No branches or pull requests
該当ページ
背景
Qithub-BOT/mastogetter#62 (comment)
でES Moduleを使うコードを書いている時、HTMLから読み込むのはエントリーポイントのみなのか、JavaScript側でimportしているものも書かないといけないのかわからなかった
リクエスト/提案内容
https://jsprimer.net/basic/module/#run-es-modules
にはHTMLからのES Moduleの読み込みについて触れられているが、背景で述べたような問題についてヒントとなる文章はない。
そこから飛ばされている
https://jsprimer.net/use-case/todoapp/entrypoint/
でも明示はないが
https://jsprimer.net/use-case/todoapp/entrypoint/#module-entry-point
の項でHTMLに変更を加える指示がないことから不要なのだろうと察することができる。
どこかにこのことについて明示できないか?
The text was updated successfully, but these errors were encountered: