クロスオリジン要求をブロックしました: 同一生成元ポリシーにより~
みたいなエラーが出るか確認するためのメモ
<!doctype html> <html lang="ja"> <head> <meta charset="utf-8"> <title>example</title> </head> <body> <h1>hoge!!!1</h1> <script> var myRequest = new Request("http://localhost:8000/api/hoge"); fetch(myRequest).then(function(response) { return response; }).then(function(response) { console.info(response); }); </script> </body> </html>
参考サイト: Request() - Web API | MDN