lav45 / yii2-aceeditor
Yii2 ajax.org Ace Editor 组件
1.2.0
2018-08-23 22:23 UTC
Requires
- bower-asset/ace-builds: 1.4.*
- yiisoft/yii2: 2.0.*
This package is auto-updated.
Last update: 2024-09-26 02:03:50 UTC
README
本扩展允许您安装和使用代码编辑器 Ace
安装
安装此扩展的首选方式是通过 composer。
运行以下命令之一:
php composer.phar require --prefer-dist lav45/yii2-aceeditor "1.2.*"
或者添加以下内容
"lav45/yii2-aceeditor": "1.2.*"
使用方法
如何调用?
use lav45\aceEditor\AceEditorWidget; echo $form->field($model, 'content')->widget(AceEditorWidget::className(), [ 'theme' => 'xcode', 'mode' => 'html', 'showPrintMargin' => false, 'fontSize' => 14, 'height' => 300, 'options' => [ 'style' => 'border: 1px solid #ccc; border-radius: 4px;' ] ]); // Ace editor without model echo AceEditorWidget::widget([ 'name' => 'description', 'value' => 'same text', ]);