Actuellement, angulaireJS est très populaire, et j'utilise progressivement cette technologie dans mes projets, les instructions peuvent être considérées comme une partie très importante. Voici quelques instructions que j'ai écrites :
Remarque : j'ai utilisé oclazyload pour charger certains fichiers JS dans mon projet
1. KindEditor
2. UÉditeur :
angular.module('AdminApp').directive('uiDatatable', ['uiLoad', '$compile', function (uiLoad, $compile) {
return function ($scope, $element, attrs) {
$scope.getChooseData = function () {
var listID = "";
var chooseData = $element.find("input[name = IsChoose]:checkbox:checked");
if (chooseData.length > 0) {
for (var i = 0; i < chooseData.length; i++) {
listID += chooseData[i].value + ",";
}
}
return listID.substring(0, listID.length - 1);
}
$scope.refreshTable = function () {
$scope.dataTable.fnClearTable(0); //清空数据
$scope.dataTable.fnDraw(); //重新加载数据
}
uiLoad.load(['../Areas/AdminManage/Content/Vendor/jquery/datatables/jquery.dataTables.min.js',
'../Areas/AdminManage/Content/Vendor/jquery/datatables/dataTables.bootstrap.js',
'../Areas/AdminManage/Content/Vendor/jquery/datatables/dataTables.bootstrap.css']).then(function () {
var options = {};
if ($scope.dtOptions) {
angular.extend(options, $scope.dtOptions);
}
options["processing"] = false;
options["info"] = false;
options["serverSide"] = true;
options["language"] = {
"processing": '正在加载...',
"lengthMenu": "每页显示 _MENU_ 条记录数",
"zeroRecords": '
没有找到相关数据
',
"info": "La page _PAGE_ sur _PAGES_ est actuellement affichée",
"infoEmpty": "Vide",
"infoFiltered": "_MAX_ enregistrements trouvés",
"recherche": "recherche",
"paginer": {
"first": "Accueil",
"previous": "page précédente",
"next": "Page suivante",
"dernière": "dernière page"
}
}
options["fnRowCallback"] = fonction (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
$compile(nRow)($scope);
}
$scope.dataTable = $element.dataTable(options);
});
$element.find("thead th").each(function () {
$(this).on("click", "input:checkbox", function () {
var ça = ceci ;
$(this).closest('table').find('tr > td:first-child input:checkbox').each(function () {
Ceci.checked = cela.checked;
$(this).closest('tr').toggleClass('selected');
});
});
})
>
}]);
Les 3 ci-dessus sont les instructions AngularJS écrites par moi. J'espère qu'elles pourront être utiles à mes amis
.