Closed sg513017 closed 7 years ago
现在的路由方案是默认get和post都支持的
我是这样写的:在api.js里写的 exports.topup = function(){} extports.topup.__regular__ ='/:id', 下面定义的规则是不是只有/api/topup/:id这样访问才可以?
我疑惑的是如果定义了regular, 那/api/topup这个api又该如何响应处理呢?
请帮我解惑,谢谢
exports.topup = function(){}
extports.topup.__regular__ ='/:id',
这样的话,会生成两类路由 /api/topup/:id
及/api/topup
;可以根据有没有this.param.id
这个字段来判断是哪一类
解决了, 谢谢! 但是我用postman测试接口时,比如http://www.githubxxx.com:8888/api/topup/1111, 接口函数里调用this.param.id报错,param是undefined, 后面的1111并不在param.id里
我在用你这个框架的时候遇到个路由的问题,现在设计两个api,