我似乎无法找到问题所在。有谁看到我做错了什么? 该项目由Meteor和React制作。
我的导入文件:
import _ from 'lodash';
import { lorem, faker } from 'faker';
import { Comments } from '../../api/comments/comments';
import { insertComment } from '../../api/comments/methods.js';
import { Bert } from 'meteor/themeteorchef:bert';
Meteor.startup(() => {
// Great place to generate some data
// Check to see if data excists in the collection
// See if the collection has any records
const numberRecords = Comments.find({}).count();
if (!numberRecords) {
// Generate some data...
_.times(100, () => {
const title = faker.lorem.title();
const content = faker.lorem.title();
insertComment.call({
title, content,
}, (error) => {
if (error) {
Bert.alert(error.reason, 'danger');
} else {
target.value = '';
Bert.alert('Comment added!', 'success');
}
});
});
}
});

这是我用来撰写评论的方法文件:
import { Comments } from './comments';
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import { rateLimit } from '../../modules/rate-limit.js';
export const insertComment = new ValidatedMethod({
name: 'comments.insert',
validate: new SimpleSchema({
title: { type: String },
content: { type: String },
}).validator(),
run(comment) {
Comments.insert(comment);
},
});
rateLimit({
methods: [
insertComment,
],
limit: 5,
timeRange: 1000,
});

这是我在终端中收到的错误代码: TypeError:无法读取属性' lorem'未定义的。
非常感谢任何帮助。
编辑:
正如我所建议的那样,我从"导入{lorem,faker}对导入进行了更改' faker&#39 ;;"从' faker&#39 ;;""
导入faker我也改变了这个" faker.lorem.title();"到" faker.hacker.noun();"
谢谢Guig!
答案 0 :(得分:3)
It looks like Faker正在导出faker
作为默认值,而不是常量。所以你应该做
import faker from 'faker';
// then use `faker.lorem` as you are currently doing
或
import { lorem } from 'faker';
// then use `lorem` instead of `faker.lorem`
目前,你正在做
import { lorem, faker } from 'faker';
然后使用faker.lorem
,因此不会使用您导入的lorem
。您尝试导入的faker
未定义,因此调用faker.lorem(...
会抛出错误TypeError: Cannot read property 'lorem' of undefined.
为例外。