聚合物应用的全球数据存储

时间:2015-12-16 00:15:40

标签: javascript html polymer web-component

我正在为我的Polymer应用程序创建一个全局数据存储区<datastore /> Web组件。它负责从服务器上检索/更改数据。

数据存储区本身提供get(query), set(object, attributes), create(attributes) and delete(object)等功能。

使用<datastore>为其他组件提供数据的“WebComponent”方式是什么?我也很好奇如何在数据存储区和其他组件之间进行双向数据绑定。

1 个答案:

答案 0 :(得分:3)

你看过firebase元素了吗? https://github.com/GoogleWebComponents/firebase-element 它提供了与您描述的功能相同的功能,但具有Firebase的服务。