0

I store in database document files (.TXT). How to create a preview of the documents and the ability to edit their content?(just like in a text editor) Does anyone know the general algorithm or existing django application?

class FileDb(models.Model):
    user = models.ForeignKey(User)
    src = models.FileField(upload_to="src_after_ocr")
4

1 回答 1

1

没有 django 通用算法。

django 是 python,因此您可以使用常见的 python 代码来打开和读取文件。如果你只是运行谷歌搜索,就有很多这样的例子。

读取文件后,您可以将文件内容作为 TextField 的值以某种形式输出。

只需将运行 tinymce 或其他所见即所得编辑器脚本的脚本添加到混合中,您就有了用于编辑字段的不错的前端。

艾伦

于 2013-05-25T06:33:53.337 回答