2016-03-23 55 views
0

我剛剛安裝了mpowaga:autoform-summernote。它在說明中要對服務器上的HTML進行消毒併發送給您,以安裝一個消毒軟件包。我已經安裝了djedi:sanitize-html但是我找不到有關如何將其與autoform和simple-schema集成/使用的說明。我假設我想在模式中定義它。我是一個小菜,所以一些指導將非常感激。如何清理服務器上的HTML - 所見即所得

如果你想我發佈我的架構或其他東西,我可以。

+0

此[鏈接](https://github.com/punkave/sanitize-html)包含一個引導到使用HTML消毒劑。請注意,該指南適用於Node,但它對Meteor應該是一樣的。 –

回答

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 
     } 
    } 
}