laravel-admin引用wangEditor编辑器 使用一:上传图片

2024-01-31 18:58

本文主要是介绍laravel-admin引用wangEditor编辑器 使用一:上传图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.安装wangEditor

安装

composer require laravel-admin-ext/wang-editor

然后

php artisan vendor:publish --tag=laravel-admin-wangEditor

配置

config/admin.php文件的extensions,加上属于这个扩展的一些配置

    'extensions' => ['wang-editor' => [// 如果要关掉这个扩展,设置为false'enable' => true,// 编辑器的配置'config' => []]]

详见:https://github.com/laravel-admin-extensions/wangEditor

https://www.kancloud.cn/wangfupeng/wangeditor3/335776 使用手册

2.新建组件:app/Admin/Extensions/WangEditor.php 如下:

<?php
namespace App\Admin\Extensions;
use Encore\Admin\Form\Field;
class WangEditor extends Field
{protected $view = 'admin.wang-editor';protected static $css = ['/vendor/laravel-admin-ext/wang-editor/wangEditor-3.0.10/release/wangEditor.min.css'];protected static $js = ['/vendor/laravel-admin-ext/wang-editor/wangEditor-3.0.10/release/wangEditor.min.js',];public function render(){$name = $this->formatName($this->column);$this->script = <<<EOT
var E = window.wangEditor
var editor = new E('#{$this->id}');// 通过 url 参数配置 debug 模式。url 中带有 wangeditor_debug_mode=1 才会开启 debug 模式
//    editor.customConfig.debug = location.href.indexOf('wangeditor_debug_mode=1') > 0editor.customConfig.debug = true
editor.customConfig.uploadFileName = 'mypic';
editor.customConfig.uploadImgHeaders = {'X-CSRF-TOKEN': $('input[name="_token"]').val()
}
editor.customConfig.zIndex = 0;
editor.customConfig.uploadImgServer = '/uploadimg'; //这里是图片上传请求接口 路由中已经配好 否则找不到
editor.customConfig.onchange = function (html) {$('input[name=$name]').val(html);
}editor.customConfig.uploadImgHooks = {customInsert: function (insertImg, result, editor) {if (typeof(result.length) != "undefined") {for (var i = 0; i <= result.length - 1; i++) {var j = i;var url = result[i].newFileName;insertImg(url);}toastr.success(result[j]['info']);}switch (result['ResultData']) {case 7:toastr.error("图片过大");break;case 6:toastr.error("最多可以上传1张图片");break;case 5:toastr.error("请选择一个文件");break;case 4:toastr.error("上传失败");break;case 3:toastr.error(result['info']);break;case 2:toastr.error("文件类型不合法");break;case 1:toastr.error(result['info']);break;}}
}editor.create();
EOT;return parent::render();}
}

3.新建视图文件 resources/views/admin/wang-editor.blade.php

如下:

<div class="form-group {!! !$errors->has($label) ?: 'has-error' !!}">
    <label for="{{$id}}" class="col-sm-2 control-label">{{$label}}</label>
    <div class="{{$viewClass['field']}}">
        @include('admin::form.error')
        <div id="{{$id}}" style="width: 100%; height: 100%;">
            <p>{!! old($column, $value) !!}</p>
        </div>
        <input type="hidden" name="{{$name}}" value="{{ old($column, $value) }}" />
    </div>
</div>

4.然后注册进laravel-admin

在app/Admin/bootstrap.php中添加以下代码:

use App\Admin\Extensions\WangEditor;
use Encore\Admin\Form;
Form::extend('wangeditor', WangEditor::class);

5.新建图片上传控制器 作图片上传处理(我的是上传到阿里云)

   public function uploadimg(Request $request){$mypic = $_FILES['mypic'];if (!empty($mypic)) {$ext = strtolower(substr($mypic['type'], strrpos($mypic['type'], '/') + 1));$exts = ['jpg', 'png', 'gif', 'jpeg'];if (!in_array($ext, $exts)) {$response[] = ['ResultData' => 2, 'info' => '文件类型不允许,请上传常规的图片(gif、jpg、jpeg与png)文件'];return $response;}$content = file_get_contents($mypic['tmp_name']);$filename = date('His') . uniqid() . "." . $ext;$env = config('app.env', 'local');$savePath = 'uploads/official/img/' . date("Y/m/d");$file = "/storage/{$savePath}/{$filename}";if ($env !== 'production') {$file = "/storage/$env/{$savePath}/{$filename}";}Storage::cloud()->put($file, $content);//删除本地图片$l = substr(strstr($localPath, "public"), 7);//区分线上还是测试机if ($env == 'production') {$l = '/var/www/zx/storage/app/public/'.$l;} else {$l = '/var/www/html/dev_admin/storage/app/public/'.$l;}if(file_exists($l)){unlink($l);}$filenames = '你的网址' . $file;$response[] = ['ResultData' => 0, 'info' => '上传成功', 'newFileName' => $filenames];return $response;}else{$response[] = ['ResultData' => 5, 'info' => '请选择一个文件'];return $response;}}

6.路由配置

Route::post('/uploadimg', 'UploadsController@uploadimg');

7.管理后台调用:

 public function form(){return FormBuilder::buildFrom(OfficialDevelopments::class, function (Form $form) {$form->wangeditor('content', '内容')->rules('required', ['required' => '必填']);})->get();}

然后就出现下图:

 

这篇关于laravel-admin引用wangEditor编辑器 使用一:上传图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/664742

相关文章

Python使用Tenacity一行代码实现自动重试详解

《Python使用Tenacity一行代码实现自动重试详解》tenacity是一个专为Python设计的通用重试库,它的核心理念就是用简单、清晰的方式,为任何可能失败的操作添加重试能力,下面我们就来看... 目录一切始于一个简单的 API 调用Tenacity 入门:一行代码实现优雅重试精细控制:让重试按我

MySQL中EXISTS与IN用法使用与对比分析

《MySQL中EXISTS与IN用法使用与对比分析》在MySQL中,EXISTS和IN都用于子查询中根据另一个查询的结果来过滤主查询的记录,本文将基于工作原理、效率和应用场景进行全面对比... 目录一、基本用法详解1. IN 运算符2. EXISTS 运算符二、EXISTS 与 IN 的选择策略三、性能对比

使用Python构建智能BAT文件生成器的完美解决方案

《使用Python构建智能BAT文件生成器的完美解决方案》这篇文章主要为大家详细介绍了如何使用wxPython构建一个智能的BAT文件生成器,它不仅能够为Python脚本生成启动脚本,还提供了完整的文... 目录引言运行效果图项目背景与需求分析核心需求技术选型核心功能实现1. 数据库设计2. 界面布局设计3

使用IDEA部署Docker应用指南分享

《使用IDEA部署Docker应用指南分享》本文介绍了使用IDEA部署Docker应用的四步流程:创建Dockerfile、配置IDEADocker连接、设置运行调试环境、构建运行镜像,并强调需准备本... 目录一、创建 dockerfile 配置文件二、配置 IDEA 的 Docker 连接三、配置 Do

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

python使用try函数详解

《python使用try函数详解》Pythontry语句用于异常处理,支持捕获特定/多种异常、else/final子句确保资源释放,结合with语句自动清理,可自定义异常及嵌套结构,灵活应对错误场景... 目录try 函数的基本语法捕获特定异常捕获多个异常使用 else 子句使用 finally 子句捕获所

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符

Python对接支付宝支付之使用AliPay实现的详细操作指南

《Python对接支付宝支付之使用AliPay实现的详细操作指南》支付宝没有提供PythonSDK,但是强大的github就有提供python-alipay-sdk,封装里很多复杂操作,使用这个我们就... 目录一、引言二、准备工作2.1 支付宝开放平台入驻与应用创建2.2 密钥生成与配置2.3 安装ali

C#中lock关键字的使用小结

《C#中lock关键字的使用小结》在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时,其他线程无法访问同一实例的该代码块,下面就来介绍一下lock关键字的使用... 目录使用方式工作原理注意事项示例代码为什么不能lock值类型在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时

MySQL 强制使用特定索引的操作

《MySQL强制使用特定索引的操作》MySQL可通过FORCEINDEX、USEINDEX等语法强制查询使用特定索引,但优化器可能不采纳,需结合EXPLAIN分析执行计划,避免性能下降,注意版本差异... 目录1. 使用FORCE INDEX语法2. 使用USE INDEX语法3. 使用IGNORE IND