zmister2016 / MrDoc

mrdoc,online document system developed based on python. It is suitable for individuals and small teams to manage documents, wiki, knowledge and notes. 觅思文档,适合于个人和中小型团队的在线文档、知识库系统。
https://mrdoc.pro/
GNU General Public License v3.0
2.97k stars 554 forks source link

新增“更新修改现存文档”的API #80

Closed chinobing closed 3 years ago

chinobing commented 3 years ago

DEMO:

import requests
api = 'http://127.0.0.1:8000/api/modify_doc/?token=XXXXXXXXX'

title = u"对文档2作出修改"
doc = u'# 这是文档2修改后的内容'

data = {
    "pid":1, #文集ID
    "did":3, #文档ID
    "title":title,
    "doc":doc
}

req = requests.post(api, data=data)
print(req.text)