laravel-smartmd
laravel-smartmd copied to clipboard
上传图片怎么加进去的啊?
能扩展到laravel-admin吗?粘贴图片也加上就好了。
能扩展到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 我们也会进行尝试。
新版本的怎么设置上传图片
新版本的怎么设置上传图片
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}' } });