私はバインディングが角度のあるものであると2つの方法を考えました:
フォームからコントローラーに投稿できます。ページを更新すると、ページに入力が表示されます。
$scope.loadInput = function () {
$scope.me.getList('api') //Restangular - this part works
.then(function(userinput) {
$scope.Input = $scope.Input.concat(userinput);
// scope.input is being referenced by ng-repeater in the page
// so after here a refresh should be triggered.
},function(response){
/*@alon TODO: better error handling than console.log..*/
console.log('Error with response:', response.status);
});
};
html ページではng-repeater
、 の配列を反復処理しfor i in input
ます。ページを更新しない限り、フォームからの新しい入力は表示されません。
これについて喜んでお手伝いします - ありがとう!