久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='rZ6tR'></tfoot>
  • <i id='rZ6tR'><tr id='rZ6tR'><dt id='rZ6tR'><q id='rZ6tR'><span id='rZ6tR'><b id='rZ6tR'><form id='rZ6tR'><ins id='rZ6tR'></ins><ul id='rZ6tR'></ul><sub id='rZ6tR'></sub></form><legend id='rZ6tR'></legend><bdo id='rZ6tR'><pre id='rZ6tR'><center id='rZ6tR'></center></pre></bdo></b><th id='rZ6tR'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='rZ6tR'><tfoot id='rZ6tR'></tfoot><dl id='rZ6tR'><fieldset id='rZ6tR'></fieldset></dl></div>
    • <bdo id='rZ6tR'></bdo><ul id='rZ6tR'></ul>

    <small id='rZ6tR'></small><noframes id='rZ6tR'>

      <legend id='rZ6tR'><style id='rZ6tR'><dir id='rZ6tR'><q id='rZ6tR'></q></dir></style></legend>

        從本地文件夾導入 type=module 的腳本會導致 CORS 問

        Importing script with type=module from local folder causes a CORS issue(從本地文件夾導入 type=module 的腳本會導致 CORS 問題)
        <legend id='mGxwx'><style id='mGxwx'><dir id='mGxwx'><q id='mGxwx'></q></dir></style></legend>
      1. <tfoot id='mGxwx'></tfoot>
      2. <i id='mGxwx'><tr id='mGxwx'><dt id='mGxwx'><q id='mGxwx'><span id='mGxwx'><b id='mGxwx'><form id='mGxwx'><ins id='mGxwx'></ins><ul id='mGxwx'></ul><sub id='mGxwx'></sub></form><legend id='mGxwx'></legend><bdo id='mGxwx'><pre id='mGxwx'><center id='mGxwx'></center></pre></bdo></b><th id='mGxwx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mGxwx'><tfoot id='mGxwx'></tfoot><dl id='mGxwx'><fieldset id='mGxwx'></fieldset></dl></div>

            • <small id='mGxwx'></small><noframes id='mGxwx'>

                  <tbody id='mGxwx'></tbody>
                • <bdo id='mGxwx'></bdo><ul id='mGxwx'></ul>

                • 本文介紹了從本地文件夾導入 type=module 的腳本會導致 CORS 問題的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我有一個調用 javascript 文件的小 html 文件,但是當我嘗試在瀏覽器中訪問它時,出現以下錯誤:

                  I have a little html file that calls a javascript file, but when I'm trying to access it in the browser I'm getting the following error:

                  在以下位置訪問腳本'file:///C:/Users/jekob/Desktop/battleship/index.js' 來自原產地null"已被 CORS 策略阻止:跨源請求僅支持協議方案:http、data、chrome-extension、edge、https,chrome 不受信任.

                  Access to script at 'file:///C:/Users/jekob/Desktop/battleship/index.js' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome-extension, edge, https, chrome-untrusted.

                  我已經用谷歌搜索了幾個小時,發現我可以通過服務器(如 node.js)托管我的應用程序,然后允許 CORS.但是我不想要任何服務器.我只想要一個簡單的 html 和一個 js 文件.

                  I've googled that for hours and found out that I can host my app by a server (like node.js) and then to allow CORS. However I don't want any server. I want just a simple html and a js file.

                  index.html:

                  index.html:

                  <!DOCTYPE html>
                  <html>
                  <head>
                      <title>battle-ship</title>
                      <link rel="stylesheet" type="text/css" href="index.css">
                      
                  </head>
                  <body>
                  <div id="board"></div>
                  <script type="module"  src="index.js"></script>
                  </body>
                  </html>
                  

                  index.js:

                  import {board} from './board_0.1.js';
                  
                  console.log(board);
                  

                  board.js:

                  class cell{
                      constructor(){
                          this.locationByLetter = null;
                          this.locationByNumb = [];
                          this.occupied = false;
                          this.clicked = false;
                      }
                  }
                  
                  class shipDitel{
                      constructor(name,size){
                          this.name = name;
                          this.size = size;
                          this.location =[];
                      }
                  }
                  
                  export const board = buildBoard();
                  const shipType = [["Destroyer",2/*size*/],["Submarine",3],["Cruiser",3,],
                                    ["Battleship",4,],["AircraftCarrier",5]];
                  
                  var shipsArr=setShip();
                  var selectedShip =  selectShip(shipsArr[4]);
                  var stateGame ={
                      setting:true,
                      gameIsStart:false
                      }
                  
                  function buildBoard(){
                  ..
                  };
                  
                  function setShip(){   //setting to a ship  his name and size .
                  ...
                  };
                  
                  function selectShip(ship){
                      ...
                  }
                  
                  function  onSelectedCell(cell){
                      ...
                  };    
                  
                  function checkTheZone(cell){  
                  ...
                  };
                  

                  推薦答案

                  我已經用谷歌搜索了幾個小時,發現我可以通過服務器(如 node.js)托管我的應用程序

                  I've googled that for hours and found out that I can host my app by a server (like node.js)

                  是的

                  然后允許 CORS.

                  由于它將是同源,因此您不需要 CORS.

                  Since it will be Same Origin, you won't need CORS.

                  但是我不想要任何服務器.我只想要一個簡單的 html 和一個 js 文件.

                  However I don't want any server. I want just a simple html and a js file.

                  那你就不能使用瀏覽器端的 ES6 模塊了.

                  Then you can't use browser-side ES6 modules.

                  您需要先編寫代碼以不使用模塊,或者使用 Webpack 或 Rollup 之類的東西將代碼轉換為以后不使用模塊.

                  You'll need to either write the code to not use modules in the first place, or use something like Webpack or Rollup to convert the code to not use modules afterwards.

                  這篇關于從本地文件夾導入 type=module 的腳本會導致 CORS 問題的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發技術分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                  <tfoot id='72B0f'></tfoot>

                        <legend id='72B0f'><style id='72B0f'><dir id='72B0f'><q id='72B0f'></q></dir></style></legend>
                      1. <small id='72B0f'></small><noframes id='72B0f'>

                            <tbody id='72B0f'></tbody>
                            <bdo id='72B0f'></bdo><ul id='72B0f'></ul>
                            <i id='72B0f'><tr id='72B0f'><dt id='72B0f'><q id='72B0f'><span id='72B0f'><b id='72B0f'><form id='72B0f'><ins id='72B0f'></ins><ul id='72B0f'></ul><sub id='72B0f'></sub></form><legend id='72B0f'></legend><bdo id='72B0f'><pre id='72B0f'><center id='72B0f'></center></pre></bdo></b><th id='72B0f'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='72B0f'><tfoot id='72B0f'></tfoot><dl id='72B0f'><fieldset id='72B0f'></fieldset></dl></div>
                          • 主站蜘蛛池模板: 中文字幕91 | 男女羞羞网站 | 热久久性| 一级毛片在线视频 | 日韩在线精品视频 | 欧美日韩不卡 | 成人小视频在线观看 | 久久久夜色精品亚洲 | 午夜av电影 | 日日夜夜天天久久 | 午夜男人免费视频 | 国产亚韩 | 香蕉视频久久久 | 精品无码久久久久久国产 | 亚洲免费视频在线观看 | 日本精品一区二区三区在线观看 | 国产福利91精品 | 久久一级免费视频 | 欧美在线视频网站 | 日本a∨视频| av永久免费 | 亚洲人成一区二区三区性色 | 国产高清久久 | 99精品热视频 | 国产精品高潮呻吟久久av野狼 | 精国产品一区二区三区 | 亚洲人成一区二区三区性色 | 成人免费片| 日韩中文字幕在线视频观看 | 欧美亚洲国产一区 | 久久新 | 欧美中文在线 | 午夜影视网 | 国产伦精品一区二区三区照片91 | 一级黄a| 一级视频黄色 | 在线视频日韩精品 | 精品动漫一区 | 久久伊人免费视频 | 在线观看亚洲一区二区 | 国产精品中文在线 |