0

我目前正在使用带有手动事务的 jqGrid php 实现来在网格中添加记录。

例如:

$oper = jqGridUtils::GetParam('oper');
if ($oper == 'add') {

    $grid->trans = false;       // disable the transaction
    try {

        jqGridDB::beginTransaction($conn);

        $reference = jqGridUtils::GetParam('reference');
        $name = jqGridUtils::GetParam('name');
        $brand = jqGridUtils::GetParam('brand');
        $price = jqGridUtils::GetParam('price');
        $total_quantity_left = jqGridUtils::GetParam('total_quantity_left');
        $product = jqGridDB::prepare($conn,
                                     "INSERT INTO product (id, reference, name, brand, price,    total_quantity_left) VALUES (NULL,?,?,?,?,?)",
                                     array($reference,
                                           $name,
                                           $brand,
                                           $price,
                                           $total_quantity_left,
                                           )
                                 );
        $stock1 = jqGridDB::prepare($conn,
                                    "INSERT INTO stock (id, shop_id, product_id, quantity) SELECT NULL, 1, (SELECT MAX(id) FROM product), ?",
                                    array(jqGridUtils::GetParam('quantity_shop1'))
                                    );
        $stock2 = jqGridDB::prepare($conn,
                                    "INSERT INTO stock (id, shop_id, product_id, quantity) SELECT NULL, 2, (SELECT MAX(id) FROM product), ?",
                                    array(jqGridUtils::GetParam('quantity_shop2'))
                                    );

        jqGridDB::execute($product);
        jqGridDB::execute($stock1);
        jqGridDB::execute($stock2);
        jqGridDB::commit($conn);

    } catch(Exception $e) {
        jqGridDB::rollBack($conn);
        echo $e->getMessage();
    }
}

到目前为止,这工作正常。

我现在遇到的问题是,如果交易过程中发生错误,我想通知用户:通常我想弹出一个错误对话框,显示 $e->getMessage() 或错误原因。

由于在 php 级别检测到错误,我如何调用 javascript 代码部分来实现这一点(我猜是alert(...) 或 $.jqgrid.info_dialog(...))?

谢谢,

4

1 回答 1

0

我不是PHP prorgammer,但我希望我能帮助你。

首先,在错误检测的情况下,您需要报告关于标头PHP 函数的错误HTTP 状态代码。此外,您可以将有关错误的信息(要显示的错误文本)放在响应正文中。您可以选择任何格式的响应。

在客户端,您可以使用errorTextFormat事件句柄来解码和重新格式化服务器响应。您应该只从errorTextFormat返回要在错误对话框中显示的文本或 HTML 片段。

如果使用内联编辑,您应该在服务器响应中放置要在错误对话框中显示的文本或使用errorfunc

于 2011-05-01T10:18:28.020 回答