尝试./bin/www时,数据存储区不是构造错误

时间:2019-01-17 05:52:59

标签: node.js

当我尝试在Windows上已安装的ubuntu应用程序中执行命令“ ./bin/www”时收到错误。

错误如下:

/mnt/c/Users/admin/Documents/html/developer_portal/app.js:91
  dataset: new Datastore(datastoreOptions)
           ^

TypeError: Datastore is not a constructor
    at Object.<anonymous> (/mnt/c/Users/admin/Documents/html/developer_portal/app.js:91:12)
    at Module._compile (module.js:652:30)
    at Object.Module._extensions..js (module.js:663:10)
    at Module.load (module.js:565:32)
    at tryModuleLoad (module.js:505:12)
    at Function.Module._load (module.js:497:3)
    at Module.require (module.js:596:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/mnt/c/Users/admin/Documents/html/developer_portal/bin/www:7:11)
    at Module._compile (module.js:652:30)

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,试图在Datastore的节点帮助程序库v3.0中重新使用一些较旧的代码。在v3中看起来有点import syntax has changedapp.js中的第91行可能类似于:

const datastore = new Datastore({projectID: 'myProject'});

在此之前,您可能像这样声明Datastore

const Datastore = require('@google-cloud/datastore');

...当您现在想要的是:

const {Datastore} = require('@google-cloud/datastore');