2016-11-06 186 views
0

我得到'TypeError:Tabular.Table不是一个函数',而使用aldeed:表格。下面是详细的错误:TypeError:Tabular.Table不是一个函数

/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 
    } 
}) 

什么我需要做什么来解决/修复这个错误?

回答

0

这是由与yogiben冲突引起的:admin。我删除它,现在aldeed:表格正在工作。