私はいくつかのキャンバスのものを試しています、
これが私のコードです。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>
したがって、これは必要に応じてテキストを描画しますが、データベースにクエリを実行し、テキストをハードコーディングした場所にデータベースから名前を付けたいと考えています。事前にthnx。
db などを照会するコードは必要ありません。js や canvas と組み合わせて使用する方法を知る必要があるだけです。