All Projects → menthe → aliyun-ueditor

menthe / aliyun-ueditor

Licence: MIT License
Aliyun OSS Ueditor, 支持Aliyun OSS 的 UEditor.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to aliyun-ueditor

aliyun-oss-deploy
🙈 一个 nodejs 命令行工具,用于部署静态资源到 aliyun oss,支持代码方式和 CLI 方式!
Stars: ✭ 31 (+82.35%)
Mutual labels:  aliyun-oss
aliyun-oss-website-action
将网站部署到阿里云OSS. Deploy website on aliyun OSS(Alibaba Cloud OSS)
Stars: ✭ 42 (+147.06%)
Mutual labels:  aliyun-oss
pancake
Pancake 是基于 Golang Gin 和 React Semantic UI 构建的个人博客
Stars: ✭ 15 (-11.76%)
Mutual labels:  aliyun-oss
vue-ueditor-wrap
🚴Vue + 🚄UEditor + v-model双向绑定🚀
Stars: ✭ 1,461 (+8494.12%)
Mutual labels:  ueditor
vue-ueditor
Editor for Vue2, Base on ueditor, UI from Wechat Media Platform.
Stars: ✭ 19 (+11.76%)
Mutual labels:  ueditor
oss-rust-sdk
Aliyun OSS SDK for Rust
Stars: ✭ 59 (+247.06%)
Mutual labels:  aliyun-oss
caesar
持续集成
Stars: ✭ 40 (+135.29%)
Mutual labels:  aliyun-oss
aliyun-oss-uploader-plugin
Aliyun/AliCloud OSS uploader
Stars: ✭ 26 (+52.94%)
Mutual labels:  aliyun-oss
xm-spring-boot
Spring Boot 基础项目
Stars: ✭ 33 (+94.12%)
Mutual labels:  ueditor
webpack-alioss-upload-plugin
A flexible webpack plugin to upload files to aliyun oss, which supports multiple optional upload methods and parameters.
Stars: ✭ 14 (-17.65%)
Mutual labels:  aliyun-oss
yii2-aliyun-oss
Yii2 Aliyun OSS Yii2 阿里云 OSS
Stars: ✭ 41 (+141.18%)
Mutual labels:  aliyun-oss
UEditor-froala-golang
基于golang go语言(beego框架)下的UEditor或froala服务端,项目来自EngineerCMS,完整的应用见这里。
Stars: ✭ 30 (+76.47%)
Mutual labels:  ueditor
springboot-learning-demo
springboot学习示例
Stars: ✭ 17 (+0%)
Mutual labels:  ueditor
wxEditor
微信编辑器,微信排版,微信公众号编辑器, 微信素材,前后端已搭建完整,原UEditor(百度编辑器,PHP1.4.3版) 二次开发 (微信编辑器,微信公众号,图文发布在线编辑器) 。
Stars: ✭ 86 (+405.88%)
Mutual labels:  ueditor
Picgo
🚀A simple & beautiful tool for pictures uploading built by vue-cli-electron-builder
Stars: ✭ 15,358 (+90241.18%)
Mutual labels:  aliyun-oss
Upic
📤uPic is a native, powerful, beautiful and simple picture and file upload tool for macOS.
Stars: ✭ 2,465 (+14400%)
Mutual labels:  aliyun-oss
Ali Oss
Aliyun OSS(open storage service) JavaScript SDK for the browser and Node.js
Stars: ✭ 1,579 (+9188.24%)
Mutual labels:  aliyun-oss
shrine-aliyun-oss
Alibaba Cloud OSS for Shrine
Stars: ✭ 14 (-17.65%)
Mutual labels:  aliyun-oss
Neditor
基于 ueditor的更现代化的富文本编辑器,支持HTTPS
Stars: ✭ 1,902 (+11088.24%)
Mutual labels:  ueditor
Ssm Demo
🍌Spring+SpringMVC+Mybatis+easyUI实现简单的后台管理系统
Stars: ✭ 1,639 (+9541.18%)
Mutual labels:  ueditor

Laravel 5 UEditor

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

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

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

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

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

Notice

For Laravel5.1 LTS, please use v0.1.1. For Laravel5.3 or 5.4, please use v0.1.2.

Requirement

  • Lavavel5.1 LTS, for Lavavel5.3, I do not test, you may have a try.
  • PHP5.6+, PHP7.0 is suitable
  • Composer

Installation

  • Run the command in your laravel project home.
composer require menthe/aliyun-ueditor -vvv

  • Copy the provider line into your config/app.php
Harris\UEditor\UEditorServiceProvider::class,
  • Then run the command.
php artisan vendor:publish
  • Change the config file -> config/UEditorUpload.php

  • Include the line in the blade template file, like template.blade.php, and you have the ueditor static file included.

@include('ueditor::head');
  • Init the ueditor in Javascript.
<!-- 加载编辑器的容器 -->
<script id="container" name="content" type="text/plain">
    这里写你的初始化内容
</script>

<!-- 实例化编辑器 -->
<script type="text/javascript">
    var ue = UE.getEditor('container');
        ue.ready(function() {
        ue.execCommand('serverparam', '_token', '{{ csrf_token() }}');//此处为支持laravel5 csrf ,根据实际情况修改,目的就是设置 _token 值.    
    });
</script>

ChangeLog

  • v0.1 First Release, just use for myself.
  • v0.1.1 正式发布,测试通过,完善文档。
  • v0.1.2 匹配Laravel5.3和5.4

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].