我有以下代碼發佈標籤列表,當我在我的標籤中輸入像3453453,345345,345345,567567676這樣的數字列表時input
角度帖子僅列出一個數字:如何通過一個輸入角度發佈數組
HTML
<tags-input placeholder="{{placeholder}}"
min-length="1"
max-length="11"
ng-class="{'read-input': tags.length > 6}"
allowed-tags-pattern="^[0-9]+$" max-tags="6" ng-model="tags"></tags-input>
<input type="hidden" ng-model="post.phones">
角碼:
$scope.$watch('tags', function (tags) {
if (angular.isArray(tags)) {
$scope.post.phones = tags.map(function (tags) {
return parseInt(tags.text, 10);
});
} else {
$scope.post.phones = [];
}
});
您的模型必須作爲數組 –
我該如何解決它? – Amirali