未定义不是一个函数
所以我尝试使用 rightjs 的自动完成器(http://rightjs.org/ui/autocompleter),但是当在我的网络浏览器中加载它时,我在第 112 行收到“未捕获的类型错误:未定义不是函数”。有什么想法吗?我的代码: http://paste.pocoo.org/show/409248/
So I'm trying to use rightjs's autocompleter (http://rightjs.org/ui/autocompleter) but when loading it up in my web browser I'm getting 'uncaught TypeError: undefined is not a function' on line 112. any ideas? my code: http://paste.pocoo.org/show/409248/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是你没有在 right-autocompleter.js 之前包含 right.js ,因为它抱怨 RightJS.Class 不是一个函数,如果没有在 RightJS 对象中定义 Class ,则这是真的。
My guess is you don't have right.js included before right-autocompleter.js because it is complaining that RightJS.Class is not a function which it is true if Class is not defined in the RightJS object.