Skip to content
alfred sang edited this page Jun 19, 2015 · 4 revisions

Welcome to the res.api wiki!

Api说明

最常用的成功返回json数据

return res.api(data);

返回成功带有状态的json数据

return res.api(data, {
  code : 1,
  msg  : 'delete failed!'
});

最通用的api接口

return res.api(404 , err, {
  code : 1,
  msg  : 'delete failed!'
});

快捷错误处理

return res.api_error(err);

其他

像速度限制之类的可以自行增加,参加 http://blog.jobbole.com/41233/