他の kendo-ui コントロールでこの問題に気付きましたが、kendo-notification について具体的に質問します。私のhtmlには次のものがあります:
<span kendo-notification="vm.notifier"></span>
<button ng-click="vm.push()">Push it</button>
私のコントローラーには次のものがあります:
(function () {
'use strict';
angular
.module('app.layout')
.controller('Shell', Shell);
function Shell() {
/*jshint validthis: true */
var vm = this;
vm.push = push;
activate();
function activate() {
vm.notifier.show('Loaded', 'info');
}
function push() {
vm.notifier.show('Pushed', 'info');
}
}
})();
私の問題: ボタンをクリックすると、通知機能が表示されます。しかし、読み込み時に次のようになります: TypeError: Cannot read property 'show' of undefined at activate ( http://localhost:57624/app/layout/shell.controller.js:41:24 ) at new Shell ( http:/ /localhost:57624/app/layout/shell.controller.js:32:9 )
Angular のオブジェクトの状態について何かが欠けていると確信していますが、コントローラーのロード フェーズ中にこの通知を表示できないということは、何が欠けているのでしょうか?