JavaScript で 同じ サイトに置いてある JSONファイルを取得しようとしまして
require() で いけるかと思って Chrome の環境で とりあえず 貼り付けしたら
Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below to allow pasting.
↑ の Warning が 出た
上に 書いている " allow pasting " タイプしたらいいのかな?
var j123 = require("test/test.json")
ペーストできた でも エラー ↓
Uncaught ReferenceError: require is not defined
結局 ↓ 書いた 同一サイト の JSON ファイル を読む コード
fetch("test/test.json") .then(r1 => { return r1.json() }) .then(j1 => { console.log(j1) });
非同期 ( Promise )すぎる
※コメント投稿者のブログIDはブログ作成者のみに通知されます