簡體   English   中英

TypeError:SimpleSchema不是Meteor 1.6項目中的構造函數

[英]TypeError: SimpleSchema is not a constructor in Meteor 1.6 project

我正在為Meteor中的員工集合創建一個SimpleSchema,我在服務器控制台中收到錯誤“TypeError:SimpleSchema不是構造函數”。 我已經閱讀了SimpleSchema文檔,這個構造函數就在那里,我的代碼和它們的例子相同。 不確定為什么會出現這個錯誤。

Server console錯誤

W20180516-23:44:46.314(2)? (STDERR) /Users/anarayan/.meteor/packages/meteor-tool/.1.6.1_1.1rttc72.ip8ui++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:280
W20180516-23:44:46.315(2)? (STDERR)                         throw(ex);
W20180516-23:44:46.315(2)? (STDERR)                         ^
W20180516-23:44:46.316(2)? (STDERR) 
W20180516-23:44:46.316(2)? (STDERR) TypeError: SimpleSchema is not a constructor
W20180516-23:44:46.316(2)? (STDERR)     at Staffs.js (imports/api/Staffs/Staffs.js:20:17)
W20180516-23:44:46.317(2)? (STDERR)     at fileEvaluate (packages/modules-runtime.js:343:9)
W20180516-23:44:46.317(2)? (STDERR)     at require (packages/modules-runtime.js:238:16)
W20180516-23:44:46.318(2)? (STDERR)     at methods.js (imports/api/Staffs/methods.js:1:193)
W20180516-23:44:46.318(2)? (STDERR)     at fileEvaluate (packages/modules-runtime.js:343:9)
W20180516-23:44:46.318(2)? (STDERR)     at require (packages/modules-runtime.js:238:16)
W20180516-23:44:46.319(2)? (STDERR)     at api.js (imports/startup/both/api.js:1:67)
W20180516-23:44:46.319(2)? (STDERR)     at fileEvaluate (packages/modules-runtime.js:343:9)
W20180516-23:44:46.319(2)? (STDERR)     at require (packages/modules-runtime.js:238:16)
W20180516-23:44:46.320(2)? (STDERR)     at index.js (imports/startup/server/index.js:1:50)
W20180516-23:44:46.320(2)? (STDERR)     at fileEvaluate (packages/modules-runtime.js:343:9)
W20180516-23:44:46.320(2)? (STDERR)     at require (packages/modules-runtime.js:238:16)
W20180516-23:44:46.321(2)? (STDERR)     at main.js (server/main.js:1:14)
W20180516-23:44:46.321(2)? (STDERR)     at fileEvaluate (packages/modules-runtime.js:343:9)
W20180516-23:44:46.321(2)? (STDERR)     at require (packages/modules-runtime.js:238:16)
W20180516-23:44:46.322(2)? (STDERR)     at /Users/anarayan/project/BusApp/.meteor/local/build/programs/server/app/app.js:7391:1
W20180516-23:44:46.323(2)? (STDERR)     at /Users/anarayan/project/BusApp/.meteor/local/build/programs/server/boot.js:411:36
W20180516-23:44:46.323(2)? (STDERR)     at Array.forEach (<anonymous>)
W20180516-23:44:46.323(2)? (STDERR)     at /Users/anarayan/project/BusApp/.meteor/local/build/programs/server/boot.js:220:19
W20180516-23:44:46.324(2)? (STDERR)     at /Users/anarayan/project/BusApp/.meteor/local/build/programs/server/boot.js:471:5
W20180516-23:44:46.324(2)? (STDERR)     at Function.run (/Users/anarayan/project/BusApp/.meteor/local/build/programs/server/profile.js:510:12)
W20180516-23:44:46.324(2)? (STDERR)     at /Users/anarayan/project/BusApp/.meteor/local/build/programs/server/boot.js:470:11

這是班級

/* eslint-disable consistent-return */

import { Mongo } from 'meteor/mongo';
import { SimpleSchema } from 'simpl-schema';

const Staffs = new Mongo.Collection('staffs');

Staffs.allow({
  insert: () => false,
  update: () => false,
  remove: () => false,
});

Staffs.deny({
  insert: () => true,
  update: () => true,
  remove: () => true,
});

Staffs.schema = new SimpleSchema({
  name: {
    type: String,
    label: 'Staff Name',
  },
  email: {
    type: String,
    label: 'Staff email id',
  },
  mobile: {
    type: String,
    label: 'Staff mobile number',
  },
  status: {
    type: String,
    label: 'Staff Status',
  },
  role: {
    type: String,
    label: 'Role name',
  },
  location: {
    type: String,
    label: 'Location from where staff belongs',
  },
  createdAt: {
    type: String,
    label: 'The date this document was created.',
    autoValue() {
      if (this.isInsert) return (new Date()).toISOString();
    },
  },
  updatedAt: {
    type: String,
    label: 'The date this document was last updated.',
    autoValue() {
      if (this.isInsert || this.isUpdate) return (new Date()).toISOString();
    },
  },
});

Staffs.attachSchema(Staffs.schema);

export default Staffs;

謝謝你的協助。

您需要導入沒有大括號的包因為它作為默認導出導出到公共:

import SimpleSchema from 'simpl-schema'; 

因此,你甚至可以這樣導入它:

import MyRenamedSchema from 'simpl-schema'; 

然后可以由另一個命名構造函數new MyRenamedSchema

資源

快速入門文檔:

https://github.com/aldeed/simple-schema-js/blob/master/README.md#quick-start

出口類型:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export

為那些來到這里的人添加一個答案,並且他們的導入已經完全沒有卷曲。 似乎如果您的數據庫中已經有數據,這也會發生。

請參閱https://stackoverflow.com/a/52579056/204658

您需要在.meteor / packages中添加以下包以使用SimpleSchema構造函數。

aldeed:collection2
aldeed:simple-schema

希望能幫助到你 !

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM