我有以下简单的html
<body ng-app="mainModule">
<div ng-controller="mainController">
<input type="text" ng-model="textValue" ng-change="onTextChange(textValue)"/>
{{isTextChanged|ch}}
</div>
</body>
的js
angular.module("mainModule", [])
.filter('ch', function() {
return function(input) {
input = input.replace('a', '');
return input;
};
})
.controller("mainController", function ($scope)
{
$scope.onTextChange = function (txt)
{
$scope.isTextChanged = txt
};
});
我面临的问题是角度只会改变字母的第一个实例&#39; a&#39;