能否提供这些扩展接口的定义文档?
Closed this issue · 1 comments
Eason0731 commented
# 更多接口胡学习
# ex : /api/hello_world/
path('hello_world/', other_api.hello_world),
path('user/<slug:username>', other_api.user),
path('get_user_info/<int:uid>', other_api.get_user_info),
path('search', other_api.search),
path('login', other_api.post_login),
path('add_user', other_api.post_add_user),
path('header', other_api.post_header),
# RESTful 风格接口
path('user/<int:uid>/', other_api.user),
# session 记录用户状态
path('user_login', other_api.user_login),
path('user_login_data', other_api.user_login_data),
# 接口的依赖
path('get_activity', other_api.get_activity),
path('get_user', other_api.get_user),
path('get_lucky_number', other_api.get_lucky_number),
# 文件上传
path('upload_file', other_api.upload_file)
根据代码找到了这些扩展的接口,想调用尝试。因为没有文档,只能根据代码给出的字段来尝试,但是摸瞎成功的不是很多,可否提供调用的类似文档?或者告知可以调用的字段?谢谢
Eason0731 commented
暂时不用了,是调用的URL自己写的不对,随后根据源代码的接口定义,基本都能调用了,故关闭这个issue