router.js 358 B

1234567891011
  1. function route(handle, pathname, response, data) {
  2. if (typeof handle[pathname] === 'function') {
  3. handle[pathname](response, data);
  4. } else { //不存在
  5. response.writeHead(404, { "Content-Type": "text/plain" });
  6. response.write("404 Not found: the page is not exsits");
  7. response.end();
  8. }
  9. }
  10. exports.route = route;