0

我的数据表只显示“处理”而不是结果。这是在我尝试从我的数据库的列中显示另一个结果之后发生的。第一次我只显示 8 列(包括隐藏的 ID 列)。但是,在我添加 1 列之后,它变成: 在此处输入图像描述 我在添加Detail列之后得到了这个。如果数据出现,表格是否会变得更宽,所以它会像这样显示?查询时没有错误,firebug 不显示错误。

if($ssWhere!="") {
                $sQuery = "SELECT prob_id,Model,Serial,Lotno,Date,Symptom,Cause,Status,CM,`Detail` FROM OQC ".$ssWhere.$sOrder.$sLimit;
                 } else {
                        $sQuery = "SELECT prob_id,Model,Serial,Lotno,Date,Symptom,Cause,Status,CM,`Detail` FROM OQC ".$sWhere.$sOrder.$sLimit;
                        }
        $rResult = mysql_query( $sQuery) or _doError(_ERROR30 . ' (<small>' . htmlspecialchars($sql) . '</small>): ' . mysql_error() );  // subm$

        $sQuery = "SELECT FOUND_ROWS()";
        $rResultFilterTotal = mysql_query( $sQuery) or _doError(_ERROR30 . ' (<small>' . htmlspecialchars($sql) . '</small>): ' . mysql_error() $
        $aResultFilterTotal = mysql_fetch_array($rResultFilterTotal);
        $iFilteredTotal = $aResultFilterTotal[0];

        $sQuery = "SELECT COUNT(prob_id) FROM OQC";

        $rResultTotal = mysql_query( $sQuery) or _doError(_ERROR30 . ' (<small>' . htmlspecialchars($sql) . '</small>): ' . mysql_error() );  //$
        $aResultTotal = mysql_fetch_array($rResultTotal);
        $iTotal = $aResultTotal[0];

//echo "sEcho is ".$_POST['sEcho'];

        $sOutput = '{';
        $sOutput .= '"sEcho": '.intval($_POST['sEcho']).',';     //   '.intval($_POST['sEcho']).', ';
        $sOutput .= '"iTotalRecords": '.$iTotal.', ';
//      $sOutput .= '"iTotalDisplayRecords": '.$iFilteredTotal.', \';
        $sOutput .= '"iTotalDisplayRecords": '.$iTotal.', ';
        $sOutput .= '"aaData": [ ';
        while ( $aRow = mysql_fetch_array( $rResult ) )
        {
                $sOutput .= "[";
                $sOutput .= '"'.addslashes($aRow['prob_id']).'",';
                $sOutput .= '"'.addslashes($aRow['Model']).'",';
                $sOutput .= '"'.addslashes($aRow['Serial']).'",';
                $sOutput .= '"'.addslashes($aRow['Lotno']).'",';
                $sOutput .= '"'.addslashes($aRow['Date']).'",';
                $sOutput .= '"'.addslashes($aRow['Symptom']).'",';
                $sOutput .= '"'.addslashes($aRow['Cause']).'",';
                $sOutput .= '"'.addslashes($aRow['Status']).'",';
                $sOutput .= '"'.addslashes($aRow['CM']).'",';
                $sOutput .= '"'.addslashes($aRow['Detail']).'"';
                $sOutput .= "],";
        }
        $sOutput = substr_replace( $sOutput, "", -1 );
        $sOutput .= '] }';

        echo $sOutput;

如果不显示Detail一切都可以正常工作。为什么?


在萤火虫秀: 结果

4

1 回答 1

0

您好,您需要在 jquery 数据表脚本中提及列名。

于 2012-12-26T09:47:53.053 回答