Tao Wang
Tao Wang
https://github.com/stewartml/express-decorators/blob/313afc90951fea5ae3ef2206e2525d46bcf2b919/src/lib/index.ts#L214 when using `@route('GET', '/some-path')`, the register fails, since router['GET'] is undefined. it should be `router[route.method.toLowerCase()]`
https://github.com/stewartml/express-decorators/blob/313afc90951fea5ae3ef2206e2525d46bcf2b919/src/lib/index.ts#L74 the 'del' throws error during register, since router['del'] is undefined, I am using express 4.17.1 It should be `route('delete', path, middleware)`
this line: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total} 页" should be: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total}" that is total count , not total page.