gpt4 book ai didi

javascript - AngularJS : how to use ng-change in factories?

转载 作者:行者123 更新时间:2023-12-03 10:11:42 25 4
gpt4 key购买 nike

我的html:

<div ng-controller="MainController">
<input type="text" ng-model="value" ng-change="change(value)">
</div>

我的 Controller :

app.controller('MainController', ['$scope', function($scope){
var search;

$scope.change = function(value) {
search = value;
}
}]);

效果很好。

现在我想在工厂中使用这个函数(ng-change),但我不知道如何做。所以,我的 Controller :

app.controller('MainController', ['$scope', 'MainFactory', function($scope, MainFactory){
$scope.search = MainFactory.getSearch();
}]);

我的工厂:

app.factory('MainFactory', function(){
var search;

return {
getSearch: function() {
whatMustBeHere.change = function(value) {
search = value;
}
return search;
}
}
});

也许还有其他方法可以解决这个问题?非常感谢。

最佳答案

使用 getter 和 setter 将值保存在工厂中

您只需设置 onChange 值即可(不要忘记将工厂注入(inject) Controller 中)

像这样:

app.controller('MainController', ['$scope', function($scope, MainFactory){

$scope.search = MainFactory.getSearchValue();

$scope.change = function(value) {
MainFactory.setSearchValue(value);
}
}]);

在您的工厂

app.factory('MainFactory', function(){
var search;

return {
setSearchValue: function(value) {
this.search = value;
}

getSearchValue: function() {
return this.search;
}
}
});

关于javascript - AngularJS : how to use ng-change in factories?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30080250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com