TypeError:表格.Table不是一个函数



我得到'TypeError: Tabular。表不是一个函数',而与aldeed:tabular工作。下面是详细的错误:

/Users/nathancain/.meteor/packages/meteor-tool/.1.4.2.zi1w5b++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:280
                        throw(ex);
                        ^
TypeError: Tabular.Table is not a function
    at meteorInstall.contactsTable.js (contactsTable.js:6:26)
    at fileEvaluate (packages/modules-runtime.js:181:9)
    at require (packages/modules-runtime.js:106:16)
    at /Users/nathancain/Dropbox/development/flt/.meteor/local/build/programs/server/app/app.js:1318:1
    at /Users/nathancain/Dropbox/development/flt/.meteor/local/build/programs/server/boot.js:295:34
    at Array.forEach (native)
    at Function._.each._.forEach (/Users/nathancain/.meteor/packages/meteor-tool/.1.4.2.zi1w5b++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/underscore/underscore.js:79:11)
    at /Users/nathancain/Dropbox/development/flt/.meteor/local/build/programs/server/boot.js:128:5
    at /Users/nathancain/Dropbox/development/flt/.meteor/local/build/programs/server/boot.js:344:5
    at Function.run (/Users/nathancain/Dropbox/development/flt/.meteor/local/build/programs/server/profile.js:480:12)
Exited with code: 1
Your application is crashing. Waiting for file change.

lib/contactsTable.js:

import Tabular from "meteor/aldeed:tabular";
TabularTables = {};
TabularTables.Contacts = new Tabular.Table({
    name: "Contacts",
    collection: Contacts,
    columns: [
        {data: "firstName", title: "First"},
        {data: "lastName", title: "Last"},
    ],
    search: {
        caseInsensitive: true,
        smart: true
    }
})

我需要做什么来排除/修复这个错误?

这是由于与yogiben:admin冲突引起的。我删除了它,现在确实:tabular工作

最新更新