{{o.content | formatHtml}}
{{o.author.name}}
{{o.pubDate | formatDate}}
{{parseInt(o.viewCount) | bigNumberTransform}}
store.js 是一个实现了浏览器的本地存储的 JavaScript 封装 API,不是通过 Cookie 和 Flash 技术实现,而是使用 localStorage、globalStorage 和 userData 行为。 示例代码: // Store 'marcus' at 'username' store.set('username', 'marcus') // Get 'username' store.get('username') // Remove 'username' store.remove('username') // Clear all keys store.clear() // Store an object literal - store.js uses JSON.stri...