2

在使用 ajax-jQuery 和 PHP 中的函数处理一个小型搜索引擎之后,我有一个数组 JSON,我想处理这个以在表中追加行,但我感到困惑。

查询 mysql 的 JSON 格式是可以的,但我不知道如何处理数据以生成表或附加到我的存在表中。

我认为这适用于每个 JSON 元素,但我不能这么认为。

注意:我的 JSON 代码是这样生成的

       ...........
       $jsonSearchResults = array();
                while ($row = mysql_fetch_assoc($result)) {
                    $jsonSearchResults[] =  array(
                        'clavemat' => $row['cve_mat'],
                        'tipomat' => $row['tipo_mat'],
                        'titulomat' => $row['titulo_mat'],
                        'autormat' => $row['autor_mat'],
                        'editmat' => $row['edit_mat'],
                        'success' => 'success'  
                    );
                }
         echo json_encode ($jsonSearchResults);

表格 HTML

.........
<table class="busqueda">
<tr>
<th scope="col">Clave</th>
<th scope="col">Tipo</th>
<th scope="col">Título</th>
<th scope="col">Autor</th>
<th scope="col">Editorial</th>
</tr>
</table>
........

JSON 代码

[
{
"clavemat":"LICOELMCUS",
"tipomat":"Libro",
"titulomat":"Contabilidad",
"autormat":"Elias Flores",
"editmat":"McGraw Hill",
"success":"success"
},
{
"clavemat":"LICUDEMCNU",
"tipomat":"Libro",
"titulomat":"Curso java",
"autormat":"Deitel",
"editmat":"McGraw Hill",
"success":"success"
},
{
"clavemat":"REECMUMUNU",
"tipomat":"Revista",
"titulomat":"Eclipses",
"autormat":"Muy Interesante",
"editmat":"Muy interesante",
"success":"success"
},
{
"clavemat":"TEPLPLTENU",
"tipomat":"Tesis",
"titulomat":"Platanito Show",
"autormat":"Platanito",
"editmat":"Telehit",
"success":"success"
}
]

AJAX.JQUERY 文件

$.ajax({
            type: "POST",
            url: action,
            data: dataSearch,
            success: function (response) {

                if (response[0].success == "success") {
                    alert("Si hay datos");
                } else {
                    alert("No hay datos");
                }

            }
        });
        return false;
    });
4

2 回答 2

2

这应该工作

$.each(response, function (index, record) {
    var row = $("<tr />");
    $("<td />").text(record.clavemat).appendTo(row);
    $("<td />").text(record.tipomat).appendTo(row);
    $("<td />").text(record.titulomat).appendTo(row);
    $("<td />").text(record.autormat).appendTo(row);
    $("<td />").text(record.editmat).appendTo(row);

    row.appendTo("table.busqueda");
});

上面的代码将行附加到具有“busqueda”类的现有表中。

于 2012-05-30T04:59:55.787 回答
2

在您的表中,您可以添加一个<tbody>元素作为动态行的容器:

<table class="busqueda">
  <thead>
    <tr>
      <th scope="col">Clave</th>
      <th scope="col">Tipo</th>
      <th scope="col">Título</th>
      <th scope="col">Autor</th>
      <th scope="col">Editorial</th>
    </tr>
  </thead>
  <tbody id="dynamic_rows">
    <!-- Ajax results go here -->
  </tbody>
</table>

然后在 ajax 成功回调中,您将呈现行:

if (response[0].success == "success") {
  // Render dynamic rows here
  var $dynamic_rows = $('#dynamic_rows');

  // clear out old rows
  dynamic_rows.html('');

  ///////
  // You can use the row building code from Rafael's answer here
  // except append to $dynamic_rows

} else {
  alert("No hay datos");
}
于 2012-05-30T05:02:07.663 回答