我一直关注Sencha Touch上的Miami Coder's tutorial。
我收到以下错误:
TypeError: ‘undefined’ is not a function (evaluating ‘this.getRandomInt(0, 100)’) Notes.js:20
指的是控制器中的以下行:
var noteId = (now.getTime()).toString() + (this.getRandomInt(0, 100)).toString();
我尝试删除连接的第二部分并决定稍后处理,但是,出现了一个新错误:
TypeError: 'undefined' is not a function (evaluating 'animation.setLayout(layout)')
指的是:Container.js:1233
有什么想法吗?
答案 0 :(得分:0)
getRandomInt()
是包含math.random的本地函数。你应该创建这个功能。