我正在尝试使用 html5 画布元素在 durandal 中绘制但没有成功
标记
<body>
<canvas id="canvas"></canvas>
</body>
js
define(function() {
function viewAttached() {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var buffer = document.createElement('canvas');
buffer.width = buffer.height = 60;
var bctx = buffer.getContext('2d');
bctx.translate(30, 30);
bctx.rotate(0.5);
bctx.fillStyle = 'rgb(255, 0, 0)';
bctx.fillRect(-15, -15, 30, 30);
ctx.fillStyle = 'rgb(0, 255, 0)';
ctx.fillRect(30, 30, 30, 30);
ctx.drawImage(buffer, 50, 50);
}
var ctor = function () {
this.viewAttached = viewAttached();
return ctor;
};
});
问题是画布没有加载所以我能看到的只是一个空的画布。相同的代码在jsfiddle中运行良好我的意思是只有jquery和canvas但是当我将它转移到durandal时它不再工作了有人可以帮忙吗?