浏览了几个教程和文档,包括这里的主要文档。按照它,创建了两个文件:
1)example.js
var currentUser={
name='Mary'
};
/**
* @api {get} /user/ Request User information
* @apiName GetUser
* @apiGroup User
*/
function getUser(){
return {code 200,data:currentUser};
}
function setName(name){
if(name.length==0){
return {code:404,message:'NameEmptyError'};
}
currentUser.name=name;
return {code 204};
}
2) 测试python.py
"""
@api {get} /user/ Request User information
@apiName GetUser
@apiGroup User
"""
print "hello"
将它们都保存在一个文件夹中,例如“my_project”。在 mac 终端上,转到“my_project”的父目录。运行脚本:
apidoc -i my_project/ -o apidoc/
得到错误:
- ERROR - Failed to parse sources
这是基本的,但不知何故,没有取得成功。