Yii Ueditor를 사용하는 방법?
먼저 새 공용 디렉토리를 만들고 항목 파일 디렉토리에 디렉토리를 업로드합니다.
그런 다음 Ueditor를 다운로드하여 공용 디렉토리에 추출합니다.
그런 다음 "ueditor를 가져옵니다. yii2" 라이브러리, 사용자 정의 업로드 디렉터리 정의;
"imagePathFormat": "/uploads/ueditor/image/{yyyy}{mm}{dd}/{time}{rand:6}", "scrawlPathFormat": "/uploads/ueditor/image/{yyyy}{mm}{dd}/{time}{rand:6}"
마지막으로 뷰에 도입하고 사용하면 됩니다.
<?php use yii\helpers\Html; use yii\bootstrap\ActiveForm; //引入百度编辑器 $this->registerJsFile('@web/public/ueditor/ueditor.config.js');//注册自定义js $this->registerJsFile('@web/public/ueditor/ueditor.all.min.js'); $this->registerJsFile('@web/public/ueditor/lang/zh-cn/zh-cn.js'); ?> <script> $(function(){ var ue = UE.getEditor('editor'); }) </script> <style> .inline .radio,.inline .checkbox{display: inline-block;margin: 0 5px;} #editor{margin-top: 20px;padding:0;margin:20px 0;width:100%;height:auto;border: none;} </style> <?php $form=ActiveForm::begin([ 'id'=>'upload', 'enableAjaxValidation' => false, 'options'=>['enctype'=>'multipart/form-data'] ]); ?> <?= $form->field($model,'title')->textInput();?> <?= $form->field($model, 'image')->fileInput();?> <?= $form->field($model,'content')->textarea(['rows'=>6,'id'=>'editor','class'=>'col-sm-1 col-md-12']);?> <?= Html::submitButton('提交', ['class'=>'btn btn-primary','name' =>'submit-button']) ?> <?php ActiveForm::end();?>
추천 튜토리얼: "Yii Tutorial"
위 내용은 Yii에서 Ueditor를 어떻게 사용하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!