第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

導入 js 文件后,我的畫布上沒有任何顯示

導入 js 文件后,我的畫布上沒有任何顯示

幕布斯7119047 2022-10-13 10:41:07
我正在嘗試制作一個 javascript 游戲,但是在我導入 js 文件(car.js)后,我的 html 畫布上沒有顯示任何內(nèi)容,在我導入car.js之前一切都顯示了。我目前有一個名為 cargame 的文件夾,它包含 3 個文件,car.js,firstgame.html和index.js。我正在提供以下文件的內(nèi)容。firstgame.html<!DOCTYPE html><html><head><title>Web Page Design</title><style>#gamescreen{        border: 1px solid black;}#bgcolor{    background-color: #b4b4b4;}</style></head><body id="bgcolor">    <div align = "center" style="margin-top: 5%"><canvas id = "gamescreen" width = "500px" height = "600px"></canvas></div>    <script src="index.js"></script></body></html>index.jsimport car from "./car";let canvas = document.getElementById("gamescreen");let ctx = canvas.getContext('2d');const GAME_WIDTH = 500;const GAME_HEIGHT = 600;ctx.fillStyle = 'black';ctx.fillRect(0, 0, canvas.width/3, canvas.height)ctx.fillRect((canvas.width/3 + canvas.width/3), 0, canvas.width/3, canvas.height)ctx.fillStyle = '#2a2a2a';ctx.fillRect(canvas.width/3, 0, canvas.width/3, canvas.height)ctx.clearRect(0,0,500,600)let Car = new car(GAME_WIDTH, GAME_HEIGHT);Car.draw(ctx);汽車.jsexport default class car{    constructor(gamewidth, gameheight){        this.width = 100;        this.height = 100;        this.position = {            x : gamewidth/2 - this.width/2,            y : gameheight - this.height - 10,        };    }    draw(ctx){        ctx.fillStyle = '#ff6969';        ctx.fillRect(this.position.x, this.position.y, this.width, this.height);    }}我的日志中出現(xiàn)以下錯誤firstgame.html:1 Access to script at 'file:///C:/MY%20DATA/java%20projects/cargame/index.js' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.錯誤 2firstgame.html:19 GET file:///C:/MY%20DATA/java%20projects/cargame/index.js net::ERR_FAILED
查看完整描述

2 回答

?
富國滬深

TA貢獻1790條經(jīng)驗 獲得超9個贊

您需要將 type="module" 添加到腳本標簽

<script type="module" src='index.js'></script>

并修復導入

import car from "./car.js";


查看完整回答
反對 回復 2022-10-13
?
子衿沉夜

TA貢獻1828條經(jīng)驗 獲得超3個贊

您需要將您的項目放在任何本地服務器中,例如 XAMP、MAMP、WAMP,并將“.js”添加到 index.js 文件中的汽車導入中,運行您的本地服務器,它就會工作。


http://img1.sycdn.imooc.com//63477ae200019d0506530354.jpg

查看完整回答
反對 回復 2022-10-13
  • 2 回答
  • 0 關注
  • 116 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號