我在我的应用程序中一直使用nq-quill richtext编辑器,每当我在nq-quill编辑器中保存数据并将其查看到视图页面时,只有数据和相应的html标签不是所需的值,如粗体,带下划线,斜体等我正在使用laravel在php中构建
任何想法都会受到赞赏.. tnx
到目前为止这个片段。它只删除标签元素。
$question = Question::create();
$question->question = ucwords(Html2Text::convert($request->question));
$question->subject_slug = $request->subject_slug;
$question->save();