directive

    1熱度

    1回答

    比方說,我有我的模板 @foreach($page->getBannersForPosition('bottom') as $banner) @include('partials.'.$banner->type.'.'.$banner->layout) @endforeach 但我想有(或東西simular,只是快速和容易) @banners('bottom') 下面的代碼,我

    0熱度

    2回答

    讓我指出,我非常新手角4 我們有一個很長的過程,用戶在我們的系統中註冊,他們將不得不通過進入的幾個進程啓動和/或驗證他們的基本信息,教育程度,工作經歷等等。爲此,我正在嘗試執行像流程這樣的嚮導步驟。 我似乎有一些router_outlet的問題,我無法找到解決的辦法。 我有一個嚮導,其中嚮導步驟正在所有頁面上顯示,並且router_outlet將更改向導步驟下面的步驟,如下所示。 這裏是我開始:

    0熱度

    1回答

    我有這樣 app.directive('pagination',function() { //custom directive for build pagination return { restrict: 'E', template:function (elem,attr) { console.log(attr.pageCount);

    0熱度

    2回答

    我有一個指令,顯示一個符號取決於一個字段的值。這被連接到字段如下: <input type="text" placeholder="" class="text-input" ng-class="example_class" ng-model="exmaple-model" my-directive /> 而一個指令,如下所示: module.directive("myDirective", f

    0熱度

    1回答

    這裏的角度noob。 我想注入我的工廠(beerFactory)到指令,但我無法從我的鏈接功能內訪問它。 正如你可以在我的代碼中看到的,我試圖控制檯登錄beerFactory對象,一旦我在鏈接函數中。 工廠工作正常,因爲我從另一個控制器內部使用它。 不知道什麼是我做錯了 app.directive('starRating', ['beerFactory', function(){ r

    -3熱度

    1回答

    奇怪我有一個宏,僅僅是一個恆定值: #define THREAD_AT_DEPTH 13 我想在編譯的時候拋出一個錯誤,如果我說值設置爲一些連。 #if (THREAD_AT_DEPTH % 2) == 0 #error THREAD_AT_DEPTH must be odd #endif 不幸的是,THREAD_AT_DEPTH % 2未在編譯時評價,#error是始終有效。如果我將

    0熱度

    1回答

    我有一個指令wriiten角1,它支持將圖像拖放到Web應用程序中。下面 是代碼: 'use strict'; angular.module('abc').directive("imageFileRead", ['$document', '$q', '$window', function ($document, $q, $window) { var URL = $window.web

    0熱度

    2回答

    我想使用指令將所有輸入數據轉換爲大寫字母。爲了實現這一目標,我創建這個定製指令: @Directive({ selector: '[appToUpperCase]' }) export class ToUpperCaseDirective { constructor() {} @HostListener('input', ['$event']) onKeyUp

    0熱度

    2回答

    我在組件中使用了一個指令。 該指令通過回調將處理的數據返回給組件。 問題是當組件中的方法被調用時'this'開始引用指令而不是組件。 我的組件是ImageFileReadDirective它在abc組件中使用像這樣。 <input #imageInput type="file" accept="image/*,.MOV,.MPEG4,.MP4,.AVI,.WMV,.MPEGPS,.FLV

    0熱度

    1回答

    當我們有以下指令動態不顯示: angular.module("MyApp") .directive('documentViewer', function() { return { restrict: 'E', link: function (scope, element, attrs) { }, templateUrl: