0
Angularfire에서 테스트를 수행하고 있으며 객체를베이스에 저장할 때마다 브라우저가 충돌합니다. 화면 업 그레 이드하지만 탭의 실행을 중지하고 브라우저가 제대로 다시 작동하도록 페이지를 새로 고쳐야합니다.Angularfire가 저장되면 브라우저가 충돌합니다.
누구든지 문제의 원인을 알 수 있습니까? 객체를 저장할 때
다음은 컨트롤러 코드입니다.
angular.module("AlbionTrading").controller("indexCtrl", function ($scope, $firebaseObject, $firebaseArray) {
//Pega objeto direto no Firebase
var ref = firebase.database().ref('AppSettings/');
// download the data into a local object
var syncObject = $firebaseObject(ref);
// synchronize the object with a three-way data binding
// click on `index.html` above to see it used in the DOM!
syncObject.$bindTo($scope, "appName");
//Pega array de objetos no Firebase
var cities = firebase.database().ref('Cities/');
$scope.cities = $firebaseArray(cities);
var posts = firebase.database().ref('Posts/');
$scope.posts = $firebaseArray(posts);
$scope.adicionarPost = function (post) {
console.log(post);
$scope.posts.$add({
Cidade: post.Cidade.Name,
Text: post.Text
});
delete $scope.post;
$scope.postForm.$setPristine();
}
});