doushangan3690 2017-03-13 01:45
浏览 56

Json的回答是错误的。 (数据表)

I wouldn't ask, but I really need.

Well, I'm trying to update my DataTable with ajax. One of my tables is ok, but the other isn't.

Here's the code. The First one is the PHP that the user will acess. And the second is the AJAX url.

p.s: My arrays names are in Portuguese, sorry about that.

clientes.php

  <?php
// Aqui será chamado o BD e conexões necessárias.
require_once("db.php");

try {
  $sql = "SELECT * FROM telesena.clientes;";
  $resultado = $con->query($sql);
} catch (PDOException $e){
  echo "Estamos passando por um problema. Tente novamente mais tarde.";
}
header( 'Content-Type: text/html; charset=utf-8' );
?>

<html>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs/jszip-2.5.0/pdfmake-0.1.18/dt-1.10.13/b-1.2.4/b-html5-1.2.4/sc-1.4.2/datatables.min.css"/>
<!-- Scripts necessários para DataTable e jQuery -->

<title> Pedidos Tele-Sena </title>

<!-- Chamando o Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">


<body>
  <!-- Nav principal -->
  <nav class="navbar navbar-toggleable-md navbar-light bg-faded">
    <div class="collapse navbar-collapse" id="navbarNav">
      <a class="navbar-brand"> Logo da Empresa </a>
      <ul class="navbar-nav">
       <li class="nav-item">
         <a class="nav-link" href="index.php">Home <span class="sr-only">(current)</span></a>
       </li>
       <li class="nav-item">
         <a class="nav-link" href="pedidos.php">Pedidos</a>
       </li>
       <li class="nav-item active">
         <a class="nav-link" href="#">Clientes</a>
       </li>
      </ul>
    </div>
  </nav>

<!-- Começando a fazer a tabela de clientes -->
  <div class="container">
    <table id="clientes" class="table" cellspacing="0" width="100%">
      <thead>
        <tr>
          <th>Cód. Convênio</th>
          <th>Nome Fantasia</th>
          <th>Razão Social</th>
          <th>Logradouro</th>
          <th>Número</th>
          <th>Bairro</th>
          <th>Município</th>
          <th>Estado</th>
          <th>UF</th>
        </tr>
      </thead>
      <tbody>
      </tbody>
    </table>
  </div>

  <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script type="text/javascript" src="https://cdn.datatables.net/v/bs/jszip-2.5.0/pdfmake-0.1.18/dt-1.10.13/b-1.2.4/b-html5-1.2.4/sc-1.4.2/datatables.min.js"></script>
  <script src="js/bootstrap.min.js"></script>
  <script src="js/jquery.toaster.js"></script>

</body>
<script>

$(document).ready(function(){
  $('#clientes').DataTable({
    "serverSide":true,
    "oProcessing":true,
    "ajax":"ajaxclientes.php",
    "processing":true,
    "bSort":false,
    "bPaginate":false,
    "language":{
    "sEmptyTable": "Nenhum registro encontrado",
    "sInfo": "Mostrando de _START_ até _END_ de _TOTAL_ registros",
    "sInfoEmpty": "Mostrando 0 até 0 de 0 registros",
    "sInfoFiltered": "",
    "sInfoPostFix": "",
    "sInfoThousands": ".",
    "sLengthMenu": "Clientes por página: _MENU_ ",
    "sLoadingRecords": "Carregando...",
    "sProcessing": "Processando...",
    "sZeroRecords": "Nenhum registro encontrado",
    "sSearch": "Pesquisar ",
    "oPaginate": {
        "sNext": "Próximo",
        "sPrevious": "Anterior",
        "sFirst": "Primeiro",
        "sLast": "Último"
    },
    "oAria": {
        "sSortAscending": ": Ordenar colunas de forma crescente",
        "sSortDescending": ": Ordenar colunas de forma descendente"
      }
    }
  });
});
</script>
<!-- Modal padrão e todos os scripts necessários estão sendo chamados do info.php-->

</html>

ajaxclientes.php

<?php
header("Content-Type: application/json");
require_once("db.php");

$start  = $_GET['start'];
$length = $_GET['length'];

$sql = "SELECT * FROM clientes ORDER BY Cod_Convenio ASC;";
$resultado = $con->query($sql);
$resposta = array();
$resposta['recordsTotal'] = $length;

if (!$resultado) {
    $resposta = array(
        'status' => false,
        'message' => 'Houve um pequeno problema...'
    );
} else {
    $resposta = array(
        'status' => true,
        'message' => 'Tudo ocorreu bem',
        'data' => $resultado ->fetchAll()
    );
}

//print_r($resposta);
echo json_encode($resposta);
exit;
?>
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 thinkphp6配合social login单点登录问题
    • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
    • ¥15 如何在scanpy上做差异基因和通路富集?
    • ¥20 关于#硬件工程#的问题,请各位专家解答!
    • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
    • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
    • ¥30 截图中的mathematics程序转换成matlab
    • ¥15 动力学代码报错,维度不匹配
    • ¥15 Power query添加列问题
    • ¥50 Kubernetes&Fission&Eleasticsearch