laravel-smartmd icon indicating copy to clipboard operation
laravel-smartmd copied to clipboard

上传图片怎么加进去的啊?

Open ThinkCsly opened this issue 6 years ago • 3 comments

能扩展到laravel-admin吗?粘贴图片也加上就好了。

ThinkCsly avatar Dec 10 '18 09:12 ThinkCsly

能扩展到laravel-admin吗?粘贴图片也加上就好了。

前端

var editor = new Smartmd({ element: document.getElementById("editor"), image:{ // 修改为你的上传路径 uploadPath:'./upload', type:['jpeg','png','bmp','gif','jpg'], // fileSize (kb) maxSize:4096, })

后端 重写 UploadController 或者修改 config/smartmd.php 来修改你的上传路径和方式

非常感谢你的意见,此项目现在任然是一个先行版,更多功能会在之后实现。 至于兼容 laravel-admin 我们也会进行尝试。

NoisyWinds avatar Dec 10 '18 10:12 NoisyWinds

新版本的怎么设置上传图片

dwhq avatar Mar 21 '19 09:03 dwhq

新版本的怎么设置上传图片

new Smartmd({ el: "#editor", height: "80vh", autoSave: { uuid: 1, delay: 5000 }, isFullScreen: true, isPreviewActive: true, uploads: { url: './upload', type: ['jpeg', 'png', 'bmp', 'gif', 'jpg'], maxSize: 4096, typeError: 'Image support format {type}.', sizeError: 'Image size is more than {maxSize} kb.', serverError: 'Upload failed in {msg}' } });

NoisyWinds avatar Mar 27 '19 03:03 NoisyWinds