我在我的ckeditor中使用FCMANditor的Filemanager上传和管理图片上传。但是在配置文件(config.py)中,upload_to目录路径是硬编码的。
UserFilesPath = '/userfiles/'
和图像文件的完整路径硬编码为 -
FileTypesPath['Image'] = UserFilesPath + 'image/'
但我想将图像文件上传到不同的目录。我会解释 -
我的每个网页都有不同的Ckeditors和唯一的ID.Each这样的CKEDITOR代表一个文档。我想将特定ckeditor的图像上传到特定的文档路径。对于前 -
FilesTypesPath['Image'] = UserFilesPath + 'image/' + 'unique_doc_id/'
每个文档的唯一文档ID都会有所不同。有什么方法可以实现这一目标吗?感谢。