router.js 340 B

1234567891011
  1. 'use strict';
  2. /**
  3. * @param {Egg.Application} app - egg application
  4. */
  5. module.exports = app => {
  6. const { router, controller } = app;
  7. // 測試
  8. router.resources("test", "/api/servicezhwl/test", controller.test); // index、create、show、destroy
  9. router.post('test', '/api/servicezhwl/test/update/:id', controller.test.update);
  10. };