我刚开始使用 RequireJs。只有一个问题。有人可以解释为什么要求块内的代码不在页面刷新时运行。它仅在我清除缓存时运行。
例子:
require(['game','comm','misc','soundutil','sprite','gui','constants'],function(Game,COMM,MISC,SoundUtil,Sprite, Gui,CNT){
window.onload = function () {
var canvas = document.getElementById('gameCanvas'),
game = document.getElementById('game'),
g = null,su = null;
canvas.width = document.body.clientWidth;
canvas.height = document.body.clientHeight;
console.log('Gamestate at beginning',CNT.GameState._current);
谢谢