0

Froala Editor ( https://www.froala.com/wysiwyg-editor ) を JSF で使用したいと考えています。ただし、次のコードを使用すると、 newArticleController.body は Froala によって生成された html の代わりに値 null を取得します。

$(function() {
  $('.articleTextarea').froalaEditor({
    toolbarButtons: ["bold", "italic", "underline", "|", "subscript", "superscript", "|", "paragraphFormat", "fontFamily", "fontSize", "|", "align", "formatOL", "formatUL", "outdent", "indent", "-", "undo", "redo", "|", "color", "emoticons", "|", "quote", "insertHR", "insertTable", "|", "createLink", "insertImage", "insertVideo", "insertFile", "|", "fullscreen", "html", "save"],
    height: 250,
    heightMax: 250
  })
});

...

<h:form>
  <h:inputTextarea value="#{newArticleController.body}" styleClass="articleTextarea"/>
  <h:commandButton value="Save" action="#{newArticleController.newArticle}"/>
</h:form>

これを解決する方法はありますか?

4

1 に答える 1

0

最後に私はそれを解決しました。pt:name="content"私はinputTextareaに入れていました。外すと効きました。

于 2016-07-30T13:33:24.700 に答える