1

我正在使用 html5 画布来捕获签名并将其存储在 MySQL 中。除了保存签名并将其发送到 MySQL 的部分之外,我已经让脚本中的所有内容都正常工作。我对 AJAX 的知识一无所知,所以我正在研究我在书中阅读的内容,查看教程并从这里获得帮助。

因此,在 Firefox 控制台中,当我单击保存签名时,我可以看到脚本显示它应该转到的 post.php 文件并显示 200 ok 通知但没有任何反应,它不会在 MySQL 中发布(这并不让我感到惊讶因为我确定我的代码不正确)并且我没有看到任何错误。

我想要完成的是将签名图像上传到服务器上的文件夹并将图像的路径保存在 MySQL 中。由于不熟悉 JavaScript、Jquery 和 Ajax,我对如何使其发挥作用感到困惑。

这是jQuery:

$(document).ready(function () {
/** Set Canvas Size **/
var canvasWidth = 400;
var canvasHeight = 75;

/** IE SUPPORT **/
var canvasDiv = document.getElementById('signaturePad');
canvas = document.createElement('canvas');
canvas.setAttribute('width', canvasWidth);
canvas.setAttribute('height', canvasHeight);
canvas.setAttribute('id', 'canvas');
canvasDiv.appendChild(canvas);
if (typeof G_vmlCanvasManager != 'undefined') {
    canvas = G_vmlCanvasManager.initElement(canvas);
}
var context = canvas.getContext("2d");

var clickX = new Array();
var clickY = new Array();
var clickDrag = new Array();
var paint;

/** Redraw the Canvas **/
function redraw() {
    canvas.width = canvas.width; // Clears the canvas

    context.strokeStyle = "#000000";
    context.lineJoin = "miter";
    context.lineWidth = 2;

    for (var i = 0; i < clickX.length; i++) {
        context.beginPath();
        if (clickDrag[i] && i) {
            context.moveTo(clickX[i - 1], clickY[i - 1]);
        } else {
            context.moveTo(clickX[i] - 1, clickY[i]);
        }
        context.lineTo(clickX[i], clickY[i]);
        context.closePath();
        context.stroke();
    }
}

/** Save Canvas **/
$("#saveSig").click(function saveSig() {
    //encode URI
    var sigData = encodeURIComponent(canvas.toDataURL("image/png"));
$("#imgData").html('Thank you! Your signature was saved');
    var ajax = XMLHttpRequest();
    ajax.open("POST", 'post.php');
    ajax.setRequestHeader('Content-Type', 'application/upload');
    ajax.send(sigData);
   // $('#debug').html(sigData);
});

/** Clear Canvas **/
$('#clearSig').click(
    function clearSig() {
        clickX = new Array();
        clickY = new Array();
        clickDrag = new Array();
        context.clearRect(0, 0, canvas.width, canvas.height);
});

/**Draw when moving over Canvas **/
$('#signaturePad').mousemove(function (e) {
    if (paint) {
        addClick(e.pageX - this.offsetLeft, e.pageY - this.offsetTop, true);
        redraw();
    }
});

/**Stop Drawing on Mouseup **/
$('#signaturePad').mouseup(function (e) {
    paint = false;
});

/** Starting a Click **/
function addClick(x, y, dragging) {
    clickX.push(x);
    clickY.push(y);
    clickDrag.push(dragging);
}

$('#signaturePad').mousedown(function (e) {
    var mouseX = e.pageX - this.offsetLeft;
    var mouseY = e.pageY - this.offsetTop;

    paint = true;
    addClick(e.pageX - this.offsetLeft, e.pageY - this.offsetTop);
    redraw();
});

});

这里是 PHP: 另外我没有在它下面写下 php 代码,它是整个签名板的一部分,所以我确定它不正确。

<?php
session_start();
if (isset($GLOBALS["HTTP_RAW_POST_DATA"]))
{
$session_id = $_SERVER['REMOTE_ADDR'];
// Get the data
$imageData=$GLOBALS['HTTP_RAW_POST_DATA'];

// Remove the headers (data:,) part.
// A real application should use them according to needs such as to check image type
$filteredData=substr($imageData, strpos($imageData, ",")+1);

// Need to decode before saving since the data we received is already base64 encoded
$unencodedData=base64_decode($filteredData);

//echo "unencodedData".$unencodedData;
$imageName = "sign_" . rand(5,1000) . rand(1, 10) . rand(10000, 150000) . rand(1500,   100000000) . ".png";
//Set the absolute path to your folder (i.e. /usr/home/your-domain/your-folder/
$filepath = "xampp/htdocs/alpha/site7/images/" . $imageName;

$fp = fopen("$filepath", 'wb' );
fwrite( $fp, $unencodedData);
fclose( $fp );

//Connect to a mySQL database and store the user's information so you can link to it later
$link = mysql_connect('localhost','root', 'password') OR DIE(mysql_error);
mysql_select_db("customer", $link);
mysql_query("INSERT INTO 'signature' ('session', 'image_location') VALUES       ('$session_id', '$imageName')") OR DIE(mysql_error());
mysql_close($link);
}
?>

和html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Signature Pad</title>

<!-- The Signature Pad -->
<script type ="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="signature-pad.js"></script>
</head>
<body>
<center>
<fieldset style="width: 435px">
    <br/>
    <br/>
    <div id="signaturePad" style="border: 1px solid #ccc; height: 55px; width: 400px;"></div>
    <br/>
    <button id="clearSig" type="button">Clear Signature</button>&nbsp;
    <button id="saveSig" type="button">Save Signature</button>
    <div id="imgData"></div>
    <div 
    <br/>
    <br/>
</fieldset>
</center>
<div id="debug"></div>
</body>
</html>

经过一番头疼之后,我终于能够发现一些错误。签署签名板并按下保存签名按钮后,我在 Firebug 中收到这些错误


警告:fopen(xampp/htdocs/alpha/site6/images/sign_42281643871777767.png):无法打开流:第20行的C:\xampp\htdocs\alpha\site6\post.php中没有这样的文件或目录警告:fwrite () 期望参数 1 是资源,在第21行的C:\xampp\htdocs\alpha\site6\post.php中给出的布尔值警告:fclose() 期望参数 1 是资源,在C:\xampp\htdocs中给出的布尔值第22行的\alpha\site6\post.php 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在 ''signatures' ('session', 'image_location') VALUES ('127.0.0.1', 'sign_42281643871' 附近使用的正确语法




由于我对 Jquery 或 Ajax 以及它们如何创建图像并尝试将其发布到文件夹中一无所知,所以我几乎被困在这一点上!

4

1 回答 1

1

似乎我在回答我自己的问题,我已经弄清楚 fopen 错误是什么,我没有使用绝对路径,所以在路径开始之前添加 / 清除了所有内容,除了最后一个错误:你您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册以获取正确的语法,以便在 ''signature' ('session', 'image_location') VALUES ('127.0.0.1', 'sign_11814198867' at line 1'附近使用

于 2013-06-10T07:58:14.950 回答