Maison > php教程 > php手册 > le corps du texte

yii2集成富文本编辑器redactor - 白狼栈

WBOY
Libérer: 2016-05-20 11:39:21
original
1361 Les gens l'ont consulté

作者:白狼 出处:http://www.manks.top/article/yii2_redactor本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

前面我们说过如何在yii2中集成百度编辑器umeditor以及如何解决umeditor上传图片问题
今天我们来谈谈yii2集成另外一个强大好用的富文本编辑器Redactor,个人觉得Redactor比百度编辑器好用哦

Redactor有官方的Yii2插件package,实用性也是很强的。

首先我们不急不躁,先进行安装Redactor。

可以参考https://github.com/yiidoc/yii2-redactor进行安装。有很多新手看不惯英文哈,如果你点击了链接参考了github上的安装,希望你再回来看看在整个安装过程中都要哪些必要的注意点。

1、我们跟他们一样,利用composer安装即可。

2、添加配置项

 'modules' =><span style="color: #000000;"> [ 
    </span>'redactor' =><span style="color: #000000;"> [ 
        </span>'class' => 'yii\redactor\RedactorModule', 
        'uploadDir' => '上传目录', 
        'uploadUrl' => '图片可访问地址', 
        'imageAllowExtensions'=>['jpg','png','gif'<span style="color: #000000;">] 
    ]</span>,<span style="color: #000000;"> 
]</span>,
Copier après la connexion

 

第一个注意点,默认的上传文件保存在根目录下的uploads,如果你想更换文件的保存目录,修改配置项uploadDir即可,同时你需要修改uploadUrl保证图片可访问。3、如果你的view是ActiveField类型,下面的配置适用你

= <span style="color: #800080;">$form</span>->field(<span style="color: #800080;">$model</span>, 'content')->widget(\yii\redactor\widgets\Redactor::className()) ?>
Copier après la connexion
<span style="font-family: verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 1.5;"><br>但是如果你的表单不是用yii自带的组建生成的,你应该像下面这样配置</span>
Copier après la connexion
= \yii\redactor\widgets\Redactor::widget([ 'model' => <span style="color: #800080;">$model</span>, 'attribute' => 'content' ]) ?>
Copier après la connexion
<span style="font-family: verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 1.5;"><br>4、其中上传类用的是redactor一套,但是你说你的上传类需要重写,也可以,只需要像下面这样加几个配置即可</span>
Copier après la connexion
= <span style="color: #800080;">$form</span>->field(<span style="color: #800080;">$model</span>, 'content')->widget(\yii\redactor\widgets\Redactor::className(),<span style="color: #000000;"> [ 
    </span>'clientOptions' =><span style="color: #000000;"> [ 
        </span>'imageManagerJson' => ['/redactor/upload/image-json'], 
        'imageUpload' => ['/redactor/upload/image'], 
        'fileUpload' => ['/redactor/upload/file'], 
        'lang' => 'zh_cn', 
        'plugins' => ['clips', 'fontcolor','imagemanager'<span style="color: #000000;">] 
    ] 
]) </span>?>
Copier après la connexion

 

5、配置语言或者插件,像第四步一样,在clientOptions项中添加lang和plugins配置项即可,如果你想问都有哪些plugins,打开目录\vendor\yii2-redactor\assets\plugins可以一睹风采。 6、图片上传注意了,因为redactor是以模块进行引入的,如果你的项目含有权限管理,记得添加权限哦。

7、忘记了一个大前提,保证你的php支持fileinfo扩展。打开php.ini文件去掉fileinfo前面的分号即可

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal