做ecshop后台开发的时,根据条件查询后,利用ajax返回的content json数据内容为空,没有填充table
效果
预期效果
问题:
make_json_result($smarty -> fetch(‘packages_list_info.htm‘), ‘‘, array(‘filter‘ => $result[‘filter‘], ‘page_count‘ => $result[‘page_count‘]));
问题出在 packages_list_info.htm页面里
{if $full_page}
整个页面
{/if}
因为query后没有给赋值 $smarty->assign(‘full_page‘, 1);
所以一直不显示查询列表
更改后实现
{if $full_page}
{/if}
<table class=‘table table-bordered ‘ id="list-table">
查询后返回填充的区域
</table>
{if $full_page}
{/if}
完美显示出来了
时间: 2024-10-04 21:00:44