JSRUN 用代码说话

创建 CRUD 数据网格(DataGrid)

编辑教程

jQuery EasyUI 应用 - 创建 CRUD 数据网格(DataGrid)

本节将介绍如何创建一个CRUD数据网格(DataGrid)。

使用可编辑的数据网格(DataGrid)插件来完成这些CRUD操作动作。

步骤 1:在 HTML 标签中定义数据网格(DataGrid)

<table id="dg" title="My Users" style="width:550px;height:250px"  
                 toolbar="#toolbar" idField="id"  rownumbers="true" fitColumns="true" singleSelect="true">
  <thead>
    <tr>
      <th field="firstname" width="50" editor="{type:'validatebox',options:{required:true}}">First Name</th>
      <th field="lastname" width="50" editor="{type:'validatebox',options:{required:true}}">Last Name</th>
      <th field="phone" width="50" editor="text">Phone</th>
      <th field="email" width="50" editor="{type:'validatebox',options:{validType:'email'}}">Email</th>
    </tr>
  </thead>
</table>
<div id="toolbar">
  <a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="javascript:$('#dg').edatagrid('addRow')">New</a>
  <a href="#" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="javascript:$('#dg').edatagrid('destroyRow')">Destroy</a>
  <a href="#" class="easyui-linkbutton" iconCls="icon-save" plain="true" onclick="javascript:$('#dg').edatagrid('saveRow')">Save</a>
  <a href="#" class="easyui-linkbutton" iconCls="icon-undo" plain="true" onclick="javascript:$('#dg').edatagrid('cancelRow')">Cancel</a>
</div>

步骤 2:使用可编辑的数据网格(DataGrid)

$('#dg').edatagrid({
  url: 'get_users.php',
  saveUrl: 'save_user.php',
  updateUrl: 'update_user.php',
  destroyUrl: 'destroy_user.php'
});

通过'url'、'saveUrl'、'updateUrl'和'destroyUrl'属性来编辑数据网格(DataGrid),这些属性的作用如下:

  • url:从服务器端检索用户数据。
  • saveUrl:保存一个新的用户数据。
  • updateUrl:更新一个已存在的用户数据。
  • destroyUrl:删除一个已存在的用户数据。

步骤 3:写服务器处理代码

保存一个新的用户(save_user.php):

$firstname = $_REQUEST['firstname'];
$lastname = $_REQUEST['lastname'];
$phone = $_REQUEST['phone'];
$email = $_REQUEST['email'];

include 'conn.php';

$sql = "insert into users(firstname,lastname,phone,email) values('$firstname','$lastname','$phone','$email')";
@mysql_query($sql);
echo json_encode(array(
  'id' => mysql_insert_id(),
  'firstname' => $firstname,
  'lastname' => $lastname,
  'phone' => $phone,
  'email' => $email
));

更新一个已存在用户(update_user.php):

$id = intval($_REQUEST['id']);
$firstname = $_REQUEST['firstname'];
$lastname = $_REQUEST['lastname'];
$phone = $_REQUEST['phone'];
$email = $_REQUEST['email'];

include 'conn.php';

$sql="update users set firstname='$firstname',lastname='$lastname',phone='$phone',email='$email' where id=$id";
@mysql_query($sql);
echo json_encode(array(
  'id' => $id,
  'firstname' => $firstname,
  'lastname' => $lastname,
  'phone' => $phone,
  'email' => $email
));

删除一个已存在用户(destroy_user.php):

$id = intval($_REQUEST['id']);

include 'conn.php';

$sql = "delete from users where id=$id";
@mysql_query($sql);
echo json_encode(array('success'=>true));
JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。 大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
支付宝
9.99
无法付款,请点击这里
金额: 0
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟