文章

顯示從 4月, 2015 起發佈的文章

調整 docker image 預設的存放路徑

Change docker image default store path. 調整 docker image 預設的存放路徑 sudo vi /etc/default/docker.io 加入: DOCKER_OPTS="-g /your file path"

Nodejs + Express 4 如何在 template 抓 Session

解法在 app.js 裡加上,但要在你定義routes前加上這一段 app. use ( function (req , res , next) { res. locals . session = req. session ; next() ; }) ;