DHTMLX 前端框架 建立你的一个应用程序 教程(六)-- 表格加载数据

 

从数据库加载数据

 

  这篇我们介绍从MySQL数据库中加载数据到表格

  

  

  我们使用 MySql的数据库dhtmlx_tutorial 和表contacts

 

  示例使用的是PHP平台和dhtmlxConnector 帮助库  因为这是实现服务器端逻辑最简单的方法   数据以XML格式输出。

 

  环境自己搭建  相信C#的朋友 从数据库获取数据转化盛XML也不是难事。

 

 

加载数据到表格:

 

  1.找到”db.sql“文件将表导入到本地数据库

  2.在codebase 文件中添加一个php文件codebase

  3.下载dhtmlxConnector 库 (下载链接

  4.在codebase文件夹中添加connector文件夹

  5.在data文件中添加contacts.php

  

  

  6.在contacts.php中添加php代码

  

<?php
require("../codebase/connector/grid_connector.php");//adds the connector engine
$res=mysql_connect("localhost","user","password");//connects to server with  db
mysql_select_db("dhtmlx_tutorial");//connects to db with name "dhtmlx_tutorial"  
 
$conn = new GridConnector($res);             //initializes the connector object
$conn->render_table("contacts","contact_id","fname,lname,email");  //loads data
//the method takes: the table‘s name, the id field, a list of fields to load

  

  获取从数据库加载数据和创建XML的细节 参考 动态加载大数据

 

  7.使用load() 方法加载数据到表格

  

contactsGrid.load("data/contacts.php");

 

  dhtmlx.js已经包含了 dhtmlxConnector  方法 ,所以我们不必再额外引入其他文件。

 

  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。