JavaScript で 同じ サイトから JSON を取得する

2024-02-05 20:42:39 | 日記

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

↑ の Warning が 出た

上に 書いている " allow pasting " タイプしたらいいのかな?

var j123 = require("test/test.json")

ペーストできた でも エラー ↓

Uncaught ReferenceError: require is not defined

Uncaught ReferenceError

結局 ↓ 書いた 同一サイト の JSON ファイル を読む コード

fetch("test/test.json")
    .then(r1 => {
		return r1.json()
    })
    .then(j1 => {
			console.log(j1)
	});

同一サイト の JSON ファイル を読む コード

非同期 ( Promise )すぎる

 

 



最新の画像もっと見る

コメントを投稿