我正在使用 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 等一样查看数据?
数据是否存储在浏览器的本地存储中?
请指教