0

我刚刚安装了mpowaga:autoform-summernote。在说明中它说要清理服务器上的 HTML 并将您发送到大气以安装清理包。我已经安装了djedi:sanitize-html,但是我找不到任何关于如何将它与 autoform 和 simple-schema 集成/使用的说明。我假设我想在模式中定义它。我是一个菜鸟,所以一些指导将不胜感激。

如果您希望我发布我的架构或其他我可以发布的内容。

4

1 回答 1

0

这是一个示例代码:

body: {
    type: String,
    label: "Enter Your Content here",
    optional: false,
    autoValue: function(){
        return Meteor.isServer ? sanitizeHtml( this.value ) : this.value;
    },
    autoform: {
        afFieldInput: {
            type: 'summernote',
            class: 'editor' // optional
          //  settings: // summernote options goes here
        }
    }
}
于 2016-07-29T21:10:00.397 回答