从本地文件夹导入 type=module 的脚本会导致 CORS 问题

问题描述 投票:0回答:3

我有一个调用 javascript 文件的小 html 文件,但是当我尝试在浏览器中访问它时,出现以下错误:

访问脚本: 来自原点的“file:///C:/Users/jekob/Desktop/battleship/index.js” “null”已被 CORS 策略阻止:跨源请求仅 支持的协议方案:http、data、chrome-extension、edge、 https,chrome 不受信任。

我在 google 上搜索了几个小时,发现我可以通过服务器(如 Node.js)托管我的应用程序,然后允许 CORS。但是我不需要任何服务器。我只想要一个简单的 html 和 js 文件。

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){  
...
};
javascript html cors es6-modules
3个回答
16
投票

我在谷歌上搜索了几个小时,发现我可以通过服务器(如node.js)托管我的应用程序

是的

然后允许 CORS。

因为它是同源的,所以你不需要 CORS。

但是我不需要任何服务器。我只想要一个简单的 html 和 js 文件。

那么你就不能使用浏览器端ES6模块了。

您需要首先编写不使用模块的代码,或者使用 Webpack 或 Rollup 等工具将代码转换为之后不使用模块。


在 HTML 问题跟踪器中有关于 CORS 要求动机的讨论。


0
投票
借助“本地服务器”概念找到了在本地运行它的解决方案。

步骤

    启动 Visual Studio
  1. 从市场安装
  2. Live Server
    
    
  3. 右键单击您的 html 文件,使用 Live Server 打开它。 (它将使用端口 5500 运行)

enter image description here


0
投票
<link rel="modulepreload" crossorigin href="https://assets-cdn.kahoot.it/challenge/assets/vendor-c3525917.js"> <link rel="stylesheet" href="https://assets-cdn.kahoot.it/challenge/assets/index-8fade471.css">
  
  
    
© www.soinside.com 2019 - 2024. All rights reserved.