Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何将我的数据库 trix 字段中的文本引入编辑器以进行进一步编辑。提前谢谢你!
假设您有一个模型$trixText并且有一个字段text。所以你可以用这个填充。您可以通过放入 value 属性来设置内容。
$trixText
text
<form …> <input id="x" value="{{ $trix->text }}" type="hidden" name="text"> <trix-editor input="x"></trix-editor> </form>