TinyMce 值不在 Yii 中发布

TinMce value not posting in Yii

这是我在查看页面中的文本区域代码

<?php echo $form->labelEx($model, 'content'); ?>    
<?php echo $form->textArea($model, 'content', array('class' => 'tinymce', 'title' => 'Please enter Content','style'=> 'width:100%')); ?>
<?php echo $form->error($model, 'content'); ?>

发帖时我没有在 Controller 中获取此值。请帮我解决一下。

您需要在提交时将tinyMCE编辑器的内容保存到文本区域。

$('form#form_id').on('submit', function() {
    tinyMCE.get('TinyMCEId').save();
});