yii2 Ueditor百度編輯器

2021-09-13 03:36:34 字數 1673 閱讀 6432

今天在網上看了下有關上傳的教程,歷經挫折才除錯好,現在把相關**及其說明貼出來,以供初次使用的朋友們參考。

在backend/controllers中新建乙個控制器demo加入以下**

public function actions()/", /* 上傳儲存路徑,可以自定義儲存路徑和檔名格式 */]]

];}

在對應的渲染頁面,即views下的頁面中

=common\widgets\ueditor\ueditor::widget(['options'=>['initialframewidth' => 850,]])?>
<?php $form = activeform::begin(); ?>

= $form->field($model, 'title')->textinput(['maxlength' => true]) ?>

= $form->field($model, 'content')->widget('common\widgets\ueditor\ueditor',[

'options'=>[

'initialframewidth' => 850,

]]) ?>

...<?php activeform::end(); ?>

**為:
<?php 

namespace common\models;

use yii\base\model;

use yii\web\uploadedfile;

/** * uploadform is the model behind the upload form.

*/class upload extends model

}

use yii\web\uploadedfile;

use common\models\upload;

/** * 富文字框的上傳

* @return array

*/public function actionuploadimage()}}

<?php 

use yii\widgets\activeform;

?>

= $form->field($model, 'content')->widget('common\widgets\ueditor\ueditor',[

'options'=>[

'initialframewidth' => 1050,//寬度

'initialframeheight' => 550,//高度

]]) ?>

= html::submitbutton('儲存', ['class' => 'btn btn-success']) ?>

<?php activeform::end() ?>

其中content是欄位名稱

百度UEditor編輯舊文章

在使用了ueditor後,有時需要編輯舊文章,檢視官方文件,有輸出文章內容,但沒有提交方法,於是參照編輯新文章時的思路,想出了下面的方法 public string words dataclassesdatacontext system new dataclassesdatacontext conf...

百度編輯器ueditor

ue information.autoheightenabled true 自適應高度 ue information.autofloatenabled false 編輯器是否固定導航欄 乙個比較簡單好用的修改辦法,就是直接修改ueditor的原始碼,而且是修改此處即可。1 路徑 editor dia...

百度UEditor 介紹

lang en us 如果看到了下面這樣的編輯器,恭喜你,初次部署成功!編輯器有很多可自定義的引數項,在例項化的時候可以傳入給編輯器 var ue ue.geteditor container 配置項也可以通過 ueditor.config.js 檔案修改,具體的配置方法請看前端配置項說明 通 ge...