1

我一直在关注Miami Coder关于 Sencha Touch 的教程。

我收到以下错误:

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

有什么想法吗?

4

1 回答 1

0
getRandomInt()

是一个包含 math.random 的局部函数。您应该创建该功能。

于 2013-08-06T09:59:02.607 回答