摘要:
路由就是根据请求不同的路径,做不同的事情。 1.先看看常规的: server.js里: var http = require('http'); var url = require('url'); function start() { function onRequest(request, respo 阅读全文
摘要:
和js类似可以传递函数作为参数也可以用匿名函数 1.传递函数作为参数 2.匿名函数 阅读全文
摘要:
Node.js 提供了 exports 和 require 两个对象,其中 exports 是模块公开的接口,require 用于从外部获取一个模块的接口,即所获取模块的 exports 对象。 实例: 在hello.js中通过 exports 对象把 world 作为模块的访问接口: 在app.j 阅读全文
摘要:
实例: 运行: 阅读全文