标签: javascript
在我目前的代码中,我收到PersistJS的以下错误:
第829行Persist.js:未捕获TypeError:对象#没有方法'init'
当我使用任何函数时会发生这种情况,在我的示例中:
var store = Persist.Store('test');
答案 0 :(得分:1)
根据this文档,您缺少new
new
var store = new Persist.Store('test');