将数据插入Taffy DB

时间:2014-01-03 12:07:36

标签: angularjs taffydb

我正在使用Angular js和Taffy DB开发应用程序。

单击“提交”按钮时,将执行以下方法。

的javascript:

$scope.addList = function () {
console.log($scope.attendees);
var data=$scope.attendees;
teamlist.insert(data);
};

首次点击提交按钮时,console.log($scope.attendees);会显示[Object{text="dffsd",$$hashKey="007"},Object{text="sdfsdf",$$hashKey="009"}]

当我第二次点击提交按钮时,console.log($scope.attendees);显示

[Object{ text="dffsd", $$hashKey="007", ___id="T000002R000002", more...}, Object { text="sdfsdf", $$hashKey="009", ___id="T000002R000003", more...}]

可能是什么原因?

我该如何检查数据的存储位置?

我们如何查看数据就像我们检查mySQL,mongoDB等一样?

数据是否存储在浏览器的本地存储中?

请建议

1 个答案:

答案 0 :(得分:0)

尝试:

$scope.addList = function () {
   console.log($scope.attendees);
   var data=$scope.attendees;
   teamlist = TAFFY(data);
   //teamlist.insert(data);
};

检查数据尝试;

console.log( teamlist().get() );

数据存储在代码

中的数组之类的对象中