fastadmin编辑器(Summernote富文本编辑器,基于bootstrap),上传图片,修改图片width固定大小与路径

方法1:
文件地址:\public\assets\js\addons.js

//第100行代码

  onImageUpload: function (files) {
                                    var that = this;
                                    //依次上传图片
                                    //自定义图片上传格式 图片宽度 编辑器上传图片
                                    for (var i = 0; i < files.length; i++) {
                                        Upload.api.send(files[i], function (data) {
                                            var url = Fast.api.cdnurl(data.url, true);
                                            //上传图片后,这一段会插入到编辑器中,可自定义URL与其他
                                            $(that).summernote("insertImage", url, 'filename123');
                                        });
                                    }
                                }
                            }
                        }, $(this).data("summernote-options") || {}));

方法2:
修改控制器代码。
edit方法:

//自定义添加规则,找到img,清除width或设置为100%
// 使用正则表达式匹配 <img> 标签并去除 style 中的 width 属性
$content = $params['content'];
$updatedContent = preg_replace_callback(
    '/<img([^>]*?)style\s*=\s*"(.*?)"(.*?)>/i',
    function ($matches) {
        // 找到并移除 width 属性
        $newStyle = preg_replace('/\bwidth\s*:\s*\d+(\.\d+)?px\s*;?\s*/i', '', $matches[2]);
        // 如果 style 为空则移除 style 属性
        if (trim($newStyle) === '') {
            return '<img' . $matches[1] . $matches[3] . '>';
        }
        return '<img' . $matches[1] . 'style="' . $newStyle . '"' . $matches[3] . '>';
    },
    $content
);

// 更新后的内容
$params['content'] = $updatedContent;


        Db::startTrans();
        try {
        .....
        ....
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

赖赖赖先生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值