yii2实现Ueditor百度编辑器的示例代码
程序员文章站
2023-11-05 13:05:58
今天在网上看了下有关图片上传的教程,历经挫折才调试好,现在把相关代码及其说明贴出来,以供初次使用的朋友们参考。
资源下载
yii2.0-ueditor下载路径:
效果...
今天在网上看了下有关图片上传的教程,历经挫折才调试好,现在把相关代码及其说明贴出来,以供初次使用的朋友们参考。
资源下载
yii2.0-ueditor下载路径:
效果演示:
安装方法:
1.下载yii2-ueditor
2.将下载的yii2-ueditor-master 修改 ueditor (注意:修改成其他文件名请修改插件内对应的命名空间)
3.将文件方在 根目录/common/widgets 下即可
调用方法:
在backend/controllers中新建一个控制器demo加入以下代码
public function actions(){ return [ 'ueditor'=>[ 'class' => 'common\widgets\ueditor\ueditoraction', 'config'=>[ //上传图片配置 'imageurlprefix' => "", /* 图片访问路径前缀 */ 'imagepathformat' => "/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ ] ] ]; }
第一种调用方式:
在对应的渲染页面,即views下的页面中
<?=common\widgets\ueditor\ueditor::widget(['options'=>['initialframewidth' => 850,]])?>
options 填写配置编辑器的参数(参考ueditor官网)
第二种调用方式:
<?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(); ?>
yii2框架整合了百度编辑器,因为文件上传采用的是yii2自带的uploadedfile,这就难免umeditor上传不成功问题,解决问题的只需要两个操作步骤,我们来看看具体实现
创建一个 common/models/upload.php:代码为:
<?php namespace common\models; use yii\base\model; use yii\web\uploadedfile; /** * uploadform is the model behind the upload form. */ class upload extends model { /** * @var uploadedfile file attribute */ public $file; /** * @return array the validation rules. */ public function rules() { return [ [['file'], 'file'], ]; } }
需要在刚刚创建的那个控制器demo里添加actionuploadimage方法处理“富文本框的图片上传”内容
use yii\web\uploadedfile; use common\models\upload; /** * 富文本框的图片上传 * @return array */ public function actionuploadimage() { $model = new upload(); if (yii::$app->request->ispost) { $model->file = uploadedfile::getinstance($model, "file"); $dir = '/uploads/ueditor/';//文件保存目录 if (!is_dir($dir)) mkdir($dir); if ($model->validate()) { $filename = $model->file->basename . "." . $model->file->extension; $dir = $dir."/". $filename; $model->file->saveas($dir); $info = [ "originalname" => $model->file->basename, "name" => $model->file->basename, "url" => $dir, "size" => $model->file->size, "type" => $model->file->type, "state" => "success", ]; exit(json_encode($info)); } } }
特别提醒:上述返回的$info信息中state状态只能是success,区分大小写
视图文件
<?php use yii\widgets\activeform; ?> <?= $form->field($model, 'content')->widget('common\widgets\ueditor\ueditor',[ 'options'=>[ 'initialframewidth' => 1050,//宽度 'initialframeheight' => 550,//高度 ] ]) ?> <div class="form-group"> <?= html::submitbutton('保存', ['class' => 'btn btn-success']) ?> </div> <?php activeform::end() ?>
其中content是字段名称
关于图片上传的可以看下:
在yii2框架中使用ueditor编辑器发布文章的地址:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。