Flask博客开启CKeditor的图片上传功能
1.开启CKeditor的本地浏览按钮
先在Flask项目的static文件夹里创建browser文件夹,再在browser文件夹里创建browse.html
接着在CKeditor的文件夹里找到config.js,在里面配置
config.filebrowserBrowseUrl = '/static/browser/browse.html';
2.在browse.html里编写CKeditor的API接口
浏览本地文件
3.打开localhost:5000,找到你的CKeditor打开图片上传,会发现多了一个浏览器服务按钮
4.点击确定按钮就可以上传了