如何将数据库中保存的值显示到所见即所得的 tinymce
how can I display saved values from the database to wysiwyg tinymce
显然,我无法使用
<div>
<label for="description">Description</label>
<textarea class="form-control" id="description" name="description" rows="3" value="{{ $product->description }}"></textarea>
</div>
现在我使用的是 WYSIWYG(tinymce),它可以单独使用 textarea
,但 WYSIWYG 集成在 textarea
中,不。我如何显示 [=13] 的值=] 所见即所得?我必须使用 Javascript 吗?
<textarea>
没有 value
属性。在标签之间放置内容:
<div>
<label for="description">Description</label>
<textarea class="form-control" id="description" name="description" rows="3">
{{ $product->description }}
</textarea>
</div>
显然,我无法使用
<div>
<label for="description">Description</label>
<textarea class="form-control" id="description" name="description" rows="3" value="{{ $product->description }}"></textarea>
</div>
现在我使用的是 WYSIWYG(tinymce),它可以单独使用 textarea
,但 WYSIWYG 集成在 textarea
中,不。我如何显示 [=13] 的值=] 所见即所得?我必须使用 Javascript 吗?
<textarea>
没有 value
属性。在标签之间放置内容:
<div>
<label for="description">Description</label>
<textarea class="form-control" id="description" name="description" rows="3">
{{ $product->description }}
</textarea>
</div>