增刪改查
登陸
註冊
頭像
核心系統
npm
package .json
Express
增刪改查案例
MongoDB 芒果資料庫
網站開發模型
+黑盒子、啞巴
+寫程式碼讓它變得智慧
+按照你寫好的套路供使用者使用
在Node 中使用art-template 模板引擎
使用者端渲染和伺服器端渲染的區別
處理留言本案例首頁資料列表渲染展示
處理留言本案例發表留言功能
如何解析請求路徑中的查詢字串
如何在 Node 中實現伺服器重定向
Node 中的Console(REPL)使用
jQuery 的 each 和 原生的 JavaScript 方法 forEach
模組中匯出多個成員和匯出單個成員
301 和 302 狀態碼的區別
exports 和 module.exports 的區別
module.exports.xxx = xxx
的方式module.exports.xxx = xxx
很麻煩,點兒太多了exports
exports
等價於 module.exports
module.exports.xxx = xxx
的方式 完全可以寫成:exports.xxx = xxx
的方式module.exports = xxx
的方式exports = xxx
的方式 不管用return
的是 module.exports
exports
只是 module.exports
的一個參照exports = xxx
重新賦值,也不會影響module.exports
exports = module.exports
這個用來重新建立參照關係的Node 是一個比肩 Java、PHP 的平臺
module.exports = {
}
exports = module.exports; //重新建立 exports 和 module.exports 的參照關係
exports.foo = 'bar'; //管用