0

我正在尝试使用打字稿在 angular2-meteor 应用程序中定义一个集合。这就是我所拥有的不起作用:

export var Images = new CollectionFS("images", {
    stores: [new FileSystem("images", {path: "~/uploads"})]
});

我得到错误:

[web.browser] collections/pdfs.ts (1, 25): Cannot find name 'CollectionFS'.
[web.browser] collections/pdfs.ts (2, 18): Cannot find name 'FileSystem'.

我也尝试过使用传统的 CollectionFS 定义:

export var Images = new FS.Collection("images", {
  stores: [new FS.Store.FileSystem("images", {path: "~/uploads"})]
});

我得到的错误是:

[web.browser] collections/pdfs.ts (1, 25): Cannot find name 'FS'.
[web.browser] collections/pdfs.ts (2, 18): Cannot find name 'FS'.

有什么想法吗?

4

1 回答 1

0

对于添加了大气的软件包,这是可行的。

declare var lodash: any;

尝试

declare var CollectionFS: any;
于 2016-03-22T05:00:16.023 回答