Laravel 5 UEditor 百度富文本编辑器 Composer 包发布!

github:https://github.com/stevenyangecho/laravel-...

Laravel 5 UEditor

UEditor 是由百度web前端研发部开发所见即所得富文本web编辑器

此包为laravel5的支持,新增多语言配置,可自由部署前端代码,默认基于 UEditor 1.4.3.

UEditor 前台文件完全无修改,可自由gulp等工具部署到生产环境

根据系统的config.app.locale自动切换多语言. 暂时只支持 en,zh_CN,zh_TW

支持本地和七牛云存储,默认为本地上传 public/uploads

ChangeLog

1.1 版 增加七牛云存储的支持

Installation

PHP 5.4+ , and Composer are required.

To get the latest version of Laravel Exceptions, simply add the following line to the require block of your composer.json file:

"stevenyangecho/laravel-u-editor": "~1.1"

You'll then need to run composer install or composer update to download it and have the autoloader updated.

Once Laravel Exceptions is installed, you need to register the service provider. Open up config/app.php and add the following to the providers key.

  • 'Stevenyangecho\UEditor\UEditorServiceProvider'

then run

  • php artisan vendor:publish

Configuration

in config/laravel-u-editor.php u can configuration ,

    'core' => [
        'route' => [
            'middleware' => 'auth',
        ],
    ],

the middleware is important!

public/laravel-u-editor/ will have the full UEditor assets.

Usage

in your \

block just put

@include('UEditor::head');

it will require assets.

if need,u can change the resources\views\vendor\UEditor\head.blade.php
to fit your customization .

ok,all done.just use the UEditor.

<!-- 加载编辑器的容器 -->
<script id="container" name="content" type="text/plain">
    这里写你的初始化内容
</script>

<!-- 实例化编辑器 -->
<script type="text/javascript">
    var ue = UE.getEditor('container');
</script>

The detail useage Please see http://ueditor.baidu.com

License

Laravel 5 UEditor is licensed under The MIT License (MIT).

本帖已被设为精华帖!
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
《L03 构架 API 服务器》
你将学到如 RESTFul 设计风格、PostMan 的使用、OAuth 流程,JWT 概念及使用 和 API 开发相关的进阶知识。
讨论数量: 4

@outyua 问题解决了,我也遇到同样的报错

7年前 评论

@墨嘉 请问一下是怎么解决的呢?

7年前 评论

这个中间件设置一直有问题啊5.5里面,都没看到有人解决了

5年前 评论

初始化有问题,有大佬帮忙么?

4年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!