gpt4 book ai didi

java - DHTMLX 甘特图未存储到数据库

转载 作者:行者123 更新时间:2023-11-29 22:02:31 26 4
gpt4 key购买 nike

我目前正在为我们的项目制作一个调度模块,为了实现这一目标,我们将使用 DHTMLX 甘特图。但是,我无法存储输入甘特图中的值!

这是我的图表代码

<!DOCTYPE html>
<html>
<head>
<link href="codebase/dhtmlxgantt.css" rel="stylesheet">
<script src="http://export.dhtmlx.com/gantt/api.js"></script>
<script src="codebase/dhtmlxgantt.js"></script>
<style type="text/css" media="screen">
html, body{
margin:0px;
padding:0px;
height:100%;
overflow:hidden;
}

</style>
</head>
<body>
<input value="Export to PDF" type="button" onclick='gantt.exportToPDF()'>


<div id="gantt_here" style='width:1000px; height:400px;'></div>

<script type="text/javascript">

gantt.init("gantt_here");
gantt.load("events.php");

var dp = new dataProcessor("events.php");
dp.init(gantt);

</script>
</body>
</html>

这是 events.php 的代码

include ('codebase/connector/db_sqlite3.php');
include ('codebase/connector/gantt_connector.php');

$dbtype = "MySQL";
$res=mysql_connect("localhost", "root", "");
mysql_select_db("myfirstdb");

$gantt = new JSONGanttConnector($res, $dbtype);

$gantt->mix("open", 1);

$gantt->render_links("gantt_links", "id", "source,target,type");
$gantt->render_table("gantt_tasks","id",
"start_date,duration,text,progress,sortorder,parent");

?>

问题出在哪里?

最佳答案

你的 php 代码看起来没问题。当您尝试保存事件时会发生什么,您可以检查服务器响应吗?它可能包含错误消息。还尝试启用甘特图连接器的日志记录,以便您可以看到实际的 sql 请求及其结果 http://docs.dhtmlx.com/connector__php__errors.html

另一件事 - 确保您已启用 id 列的自动增量,否则连接器将无法插入新记录

关于java - DHTMLX 甘特图未存储到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32481915/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com