fileLink не разрешен схемой

Я пытаюсь использовать Simple Schema в моем текущем проекте Meteor React, но по какой-то причине я не могу заставить его работать.

Это моя схема:

Comments.schema = new SimpleSchema({
  city: {
    type: String,
    label: 'The name of the city.'
  },

  person: {
    type: String,
    label: 'The name of the person.'
  },
  location: {
    type: String,
    label: 'The name of the location.'
  },
  title: {
    type: String,
    label: 'The title of the comment.'
  },

  content: {
  type: String,
  label: 'The content of the comment.'
  },

  fileLink: {
  type: String,
  regEx: SimpleSchema.RegEx.Url,
  label: 'The url of the file.'
  },

  createdBy: {
  type: String,
  autoValue: function(){ return this.userId },
  label: 'The id of the user.'
  }
});

И это моя вставка:

  createSpark(event){
    event.preventDefault();

    const city = this.city.value;
    const person = this.person.value;
    const location = this.location.value;
    const title = this.title.value;
    const content = this.content.value;
    const fileLink = s3Url;

    insertComment.call({
      city, person, location, title, content, fileLink
      }, (error) => {
        if (error) {
              Bert.alert(error.reason, 'danger');
          } else {
              target.value = '';
              Bert.alert('Comment added!', 'success');
          }
      });
    }

Я сохраняю значение, полученное из amazon, в глобальной переменной s3Url. Я могу без проблем console.log эту переменную, но когда я хочу записать ее в базу данных, я получаю сообщение об ошибке "fileLink не разрешен по схеме".

Кто-нибудь видит, что я делаю не так?

Вот мой файл comments.js:

import faker from 'faker';
import { Mongo } from 'meteor/mongo';
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
import { Factory } from 'meteor/dburles:factory';

export const Comments = new Mongo.Collection('comments');

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

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

Comments.schema = new SimpleSchema({
  city: {
    type: String,
    label: 'The name of the city.'
  },

  person: {
    type: String,
    label: 'The name of the person.'
  },
  location: {
    type: String,
    label: 'The name of the location.'
  },
  title: {
    type: String,
    label: 'The title of the comment.'
  },

  content: {
    type: String,
    label: 'The content of the comment.'
  },

  fileLink: {
    type: String,
    regEx: SimpleSchema.RegEx.Url,
    label: 'The url of the file.'
  },

  createdBy: {
    type: String,
    autoValue: function(){ return this.userId },
    label: 'The id of the user.'
  }
});

Comments.attachSchema(Comments.schema);

И мой файл method.js:

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({
    city: { type: String },
    person: { type: String, optional: true },
    location: { type: String, optional: true},
    title: { type: String },
    content: { type: String },
    fileLink: { type: String, regEx: SimpleSchema.RegEx.Url },
    createdBy: { type: String, optional: true }
  }).validator(),
  run(comment) {
    Comments.insert(comment);
  },
});

rateLimit({
  methods: [
    insertComment,

  ],
  limit: 5,
  timeRange: 1000,
});

Работая немного больше над этим, я заметил некоторые вещи, которые я делал неправильно. 1. У меня не было правильного значения для моей простой схемы. 2. Некоторые проблемы связаны с тем, что в URL есть пробелы. Что я могу сделать, чтобы это исправить? 3. Текущая ошибка, которую я получаю: "Исключение при доставке результата вызова" comments.insert ": ReferenceError: цель не определена".

1 ответ

Решение

Работая немного больше над этим, я заметил некоторые вещи, которые я делал неправильно. 1. У меня не было правильного значения для моей простой схемы. 2. Некоторые проблемы связаны с тем, что в URL есть пробелы. Что я могу сделать, чтобы это исправить? 3. Текущая ошибка, которую я получаю: "Исключение при доставке результата вызова" comments.insert ": ReferenceError: цель не определена".

Спасибо @Khang

Другие вопросы по тегам