如何使用节点js从谷歌云数据存储区返回所有实体ID?

时间:2017-04-21 09:15:39

标签: node.js google-cloud-datastore

我想使用google cloud datastore api在节点js中列出所有类型的Google云数据存储的实体ID

2 个答案:

答案 0 :(得分:0)

如果您使用的是nodeJS和gstore-node,则可以使用以下语法列出所有实体ID

const withMyComponent = WrapperComponent => {
  class HOC extends Component {
    state = {
      value: ""
    };

    changedHandler = event => {
      // Instead of 
      // this.setState( value: event.target.value );

      // Do This.
      this.setState({ value: event.target.value });
    };

    render() { ... }
  }

  return HOC;
};

希望这会有所帮助。

谢谢

答案 1 :(得分:-2)

它可能但你最终可能会耗尽每日配额。您每天最多可以检索50,000个实体。如果您需要更高的配额,则必须激活项目的结算并设置支出限额。请参阅以下链接:

Pricing and Quota | Cloud Datastore