我正在尝试一些帆布的东西,
这是我的代码,任何人都可以了解如何在 javascript 中使用 sqlvariables 吗?
<script type="text/javascript">
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
var imageObj = new Image();
imageObj.onload = function(){
context.drawImage(imageObj, 0, 0);
context.font = "40pt Calibri";
context.fillText("Aanvaller1", 75, 260);
context.fillText("Aanvaller2", 450, 260);
context.fillText("Mid1", 200, 560);
context.fillText("Mid2", 450, 560);
context.fillText("Verdediger1", 70, 860);
context.fillText("Verdediger2", 425, 860);
context.fillText("Keeper", 310, 1010);
};
imageObj.src = "voetbalveld2.png";
};
</script>
<canvas id="myCanvas" width="804" height="1200"></canvas>
所以这将根据需要绘制我的文本,但我希望能够查询数据库并将数据库中的名称放在我现在硬编码文本的地方。提前谢谢。
我不需要代码如何查询数据库等,我只需要知道如何将它与 js 和 canvas 结合使用。