DOM でディレクティブを宣言し、Local スコープ プロパティのようなスコープ プロパティを設定したいのですが、それができません...
プロパティの型が int の場合は問題ありませんが、dateType が string または datetime の場合、問題が発生します...
これは私のhtml宣言です:
<div ng-controller="MyCtrl">
<time-reminding relative-days-to-finish="10" reminder-name="Robo"></time-reminding>
</div>
ここにディレクティブがあります:
myApp.directive('timeReminding', function() {
return {
template: "<div>foo - {{relativeDaysToFinish}}<br />{{reminderName}}</div>",
scope: {
relativeDaysToFinish: '=',
reminderName: '='
},
replace: true,
restrict: "E",
constroller: function($scope){
}
}
});
私は何を間違っていますか?
ありがとう!