我很困惑在html中构建一个简单的表并动态填充它。
我在html中创建了一个简单的表:
<div class="container" style="width:100%;padding:50px">
<table id="tblItems" class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Action</th>
<th>Objet</th>
<th>Champs</th>
<th>Demandeur</th>
<th>Status</th>
<th>Date de la prise en compte</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
然后填充我的表,我发出一个ajax请求来检索数据以填充表:
$.ajax({
type: "GET",
url: "http://localhost:3000/suggestions?limit=5&offset=" + offset,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
$.each(response, function(){
var data = JSON.parse(this.fields);
... DOING OTHER STUFF
//THIS LOOKS HORRIBLE!! (adding content to my table)
rows += "<tr><td>" + this.id + "</td><td>" + this.action + "</td><td>" + this.entity + "</td><td style='color:green'>" + fields
+ "</td><td>" + this.requester + "</td><td>" + this.is_approved + "</td><td>" + this.creation_date + "</td><td>" + images + "</td></tr>";
});
$(rows).appendTo("#tblItems tbody");
failure: function () {
console.log("fail");
$("#tblItems").append(" Error when fetching data please contact administrator");
}
});
我为创建表而注入的代码非常糟糕。 一位朋友告诉我,我应该使用模板。所以我看着它,我创建了一个玉模板。
doctype
html( lang="en" )
head
title Baking Bootstrap Snippets with Jade
meta( charset='utf-8' )
meta( http-equiv='X-UA-Compatible', content='IE=edge' )
meta( name='viewport', content='width=device-width, initial-scale=1.0' )
meta( name='description', content='Baking Bootstrap Snippets with Jade' )
//- Bootswatch Theme
link(href="//maxcdn.bootstrapcdn.com/bootswatch/3.3.0/flatly/bootstrap.min.css", rel="stylesheet")
body(style="padding-bottom:10rem;")
.container
script( src='//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js' )
script( src='//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js' )
script( src='script.js' )
#container(style='padding:50px;')
table(id="table",class="table table-striped")
thead
tr
th Id
th Action
th Objet
th Champs
th Demandeur
th Status
th Date de la prise en compte
th Actions
tbody
现在,我的问题如下:如何以“美丽的方式”填充表格?我将不得不调用一个javascript文件来进行我的ajax查询,但是,如何填充表而不必传递一个不可读的丑陋html字符串?
答案 0 :(得分:0)
据我所知,你不能在玉器中做到这一点,只需要某种模板引擎。
它需要基于JS:
PHP还有另一种方式。将JSON解析为php,然后生成内容。您也可以使用一些模板引擎。 (当PHP为1时,有人不同意你需要一个模板引擎)
我个人的建议是: