Authored by 周少峰

del json parse

... ... @@ -14,7 +14,7 @@ const uuid = require('uuid');
function _cacheGet(key) {
return cache.get(key).then((data) => {
if (data) {
return JSON.parse(data);
return data;
}
return Promise.reject();
... ...