我已尝试使用此代码重新初始化Bootstrap 3的数据表以用于搜索选项。但是,当服务器端的调用使用AngularJS时,它对我不起作用.DataTable响应通过Controller从服务器端(PHP)调用。
" table20" 是响应表ID。
感谢提前..
以下是我的控制器的代码
$scope.update_frame_imgs = function(frame_clrid) {
//$('#table20').dataTable();
$http.post("ajax/order_main_table.php").success(function(data, status, headers, config) {
$scope.order_main_table=data;
$('#table20').dataTable().fnDestroy();
$('#table20').dataTable();
}).
error(function(data, status, headers, config) {
//alert("Please Try Again..!");
});
}