angular-directive

    0熱度

    1回答

    我創建了一個示例應用程序here。我的應用程序有兩個範圍內的對象數組,名稱爲data和data2。我也有2個指令: app.directive('root',function(){ return { scope:{ items:'=' }, restrict:'AE', template:'<ul><li>Item<ul><li ng-repeat="item in items

    0熱度

    1回答

    我有一個Parent複選框,當點擊一個子複選框時會被選中。我想要這個父級複選框輪流綁定第三個複選框。但是當更改是由ng檢查導致的時,雙向綁定不起作用。這裏是模板: <div><input type="checkbox" ng-checked="childCheckbox" ng-model="parentCheckbox" /> Parent Checkbox</div> <div><input

    5熱度

    5回答

    我有一個簡單的HTML表單,其中包含常規文本輸入。 ng-minlength,ng-maxlength和ng-pattern角度built-in form input directives被設置在輸入上。 問題:ng-pattern檢查前應用長度檢查ng-minlength和ng-maxlength。 問題:如何更改默認檢查順序:即首先檢查長度,然後應用模式檢查? 例子: <body ng-app

    1熱度

    2回答

    我有一個自定義的角度指令,用圖形表示我的webapp中的一個「活動」。我用這樣的: <activity-box ng-repeat="act in activities" model="act" active="{{currentActivity == act}}" /> 我的指令具有隔離範圍,並宣佈model和active這樣的: appDirectives.directive('

    1熱度

    1回答

    我爲d3強制指令圖譜編寫了一個角度指令。 Code is here. 我使用$ log.log(「xx」);調試代碼。我意識到一些reasone這個指令加載多次。對於mg控制器,指令綁定的那個控制器,我有2個工廠,並且在控制器初始化時調用這兩個工廠。 通過使用$log.log("xx");我意識到加載工資時,d3指令至少加載6次,每個工廠加載兩次,之後加載兩次。我「繞過」的方式是使用d3.sele

    0熱度

    4回答

    我有一種情況,我需要執行不同的事件上第一次和第二次點擊div。 第一次點擊div將被展開,第二次點擊它將被重定向到它的詳細頁面。 Div包含帖子的詳細信息。 <div ng-click="select(comment._id);" ng-dblclick="changeurl(user.username,data.type,comment._id)" enter ng-rep

    8熱度

    1回答

    angular.module('mod1', []) .directive('myDir', ($timeout) => { return { ///.... } }); angular.module('myApp', ['mod1']) <html ng-app="myApp"> <body> <my-dir valu='