如何将已保存的值从数据库显示到所见即所得tinymce

时间:2018-09-04 06:44:50

标签: php laravel-5 wysiwyg

显然,我不能使用

<div>
  <label for="description">Description</label>
  <textarea class="form-control" id="description"  name="description" rows="3" value="{{ $product->description }}"></textarea>
</div>

现在,我使用的是WYSIWYG(tinymce),它可以单独与textarea一起使用,但是可以与集成在textarea中的WYSIWYG一起使用,不。如何显示description的值在所见即所得?我必须使用Javascript吗?

1 个答案:

答案 0 :(得分:4)

<textarea>没有value属性。在标签之间放置内容:

<div>
  <label for="description">Description</label>
  <textarea class="form-control" id="description"  name="description" rows="3">
    {{ $product->description }}
  </textarea>
</div>