1
我想通過dustjs渲染來自webconsole上postgress的json數據。 但我的數據是一樣(沒有對象鍵)dustjs模板格式的json對象數組?
[
{
"a": "123a",
"b": "fdhd",
},
{
"a": "123a",
"b": "fdhd",
}
]
所以我怎麼可能寫模板,這個數據在dustjs。 這是我寫的模板如下:
{#.}\
<tr>
<td>{a}</td>
<td>{b}</td>
</tr>{~n}\
{:else}\
<p>Humm...</p>\
{/.}\
,但它不會幫助我。 webconsole上的 它顯示錶中沒有可用的數據。 請幫我解決..我新來粉塵js和ajax查詢。 我渲染這個數據在JavaScript這樣
$(document).ready(function(){
$.ajax({
type: 'GET',
url: 'http://localhost:1517/abc',
data: data,
dataType: 'application/json',
success: function (data) {
dust.render('templatedata', data , function(err, out) {
document.getElementById('data-from-dust').innerHTML = out; })
}
});
});