我只是想让工作成为一个模式的手表表达式,它包含在一个 html 文件中。
在我的演示中,有 2 块手表:一个可以工作,另一个不能。
http://plnkr.co/edit/bNF7Yw?p=info
谢谢
我只是想让工作成为一个模式的手表表达式,它包含在一个 html 文件中。
在我的演示中,有 2 块手表:一个可以工作,另一个不能。
http://plnkr.co/edit/bNF7Yw?p=info
谢谢
includemodal
应该在 ModalInstanceController 的范围内,因为该模型在用于模态的模板下定义。更新的 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: {
}
});
};