0
我只是想將一個手錶表達式轉換爲包含在html文件中的模態表達式。手錶表達式在模態中不起作用
在我的演示中,有2個手錶:一個工作,另一個沒有。
http://plnkr.co/edit/bNF7Yw?p=info
謝謝
我只是想將一個手錶表達式轉換爲包含在html文件中的模態表達式。手錶表達式在模態中不起作用
在我的演示中,有2個手錶:一個工作,另一個沒有。
http://plnkr.co/edit/bNF7Yw?p=info
謝謝
includemodal
應該是ModalInstanceController的範圍之內,因爲在用於模態模板下定義的模型。 Updated Plunker
$scope.openAddProductModal = function () {
var modalInstance = $modal.open({
templateUrl: 'AddProductModalContent.html',
controller: function ($scope, $modalInstance, $log) {
$scope.includemodal={search_value:''};
$scope.$watch('includemodal.search_value', function(new_val) {
console.log('includemodal.search_value ' + new_val);
});
$scope.ok = function() {
$modalInstance.close();
};
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
};
},
resolve: {
}
});
};
我得到「導入錯誤 - 找不到Plunk」 – Giszmo