1

我目前正在大量定制 Telescope,它是用 Meteor 编写的。

我需要查看源代码中定义的 Telescope 架构中定义的3,000Postsbody字符。

我已经能够自定义 HTML 和 JS,但不能自定义模型。我该怎么做?

4

1 回答 1

3

只需在您的文件夹下创建一个文件lib并使用此处的文档:http: //docs.telescopeapp.org/docs/custom-fields删除或添加字段到该架构。

编辑:抱歉,但仔细阅读您的评论,我知道您想修改 autoForm 道具而不是 Schema 本身。要更改最大允许值,请执行以下操作:

Posts.removeField("body");
Posts.addField({
  fieldName: 'body',
  fieldSchema: {
    type: String,
    optional: true,
    max: 5000,
    editableBy: ["member", "admin"],
    autoform: {
      placeholder: 'Cannot exceed the maximum length of 5000 characters',
      row: 10,
      type: 'textarea'
    }
  }
});
于 2015-12-16T08:26:28.263 回答