接下來就把cache機制實作出來吧(lib/cache.js): var cache = {}; function regist(type) { if(!cache[type]) { cache[type] = {}; } } function get( ...
確定! 回上一頁