Spine.js 尝试使用其 Ajax 功能时出错
我正在尝试 Spine.js 并希望将其配置为与服务器端的应用程序交互。 这是代码:
var Album = Spine.Model.sub();
Album.configure("Album", "public");
Album.extend(Spine.Model.Ajax);
最后一行导致此错误:
uncaught exception: extend(obj) requires obj
这里有什么问题?这是教程中的代码,只不过他们使用 Task
而我使用 Album
。
I am trying out Spine.js and want to configure it to interact with my app on server side.
Here is the code:
var Album = Spine.Model.sub();
Album.configure("Album", "public");
Album.extend(Spine.Model.Ajax);
The last line causes this error:
uncaught exception: extend(obj) requires obj
What is the problem here? It's a code from the tutorial, except they use Task
and I use Album
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否包含了spine 中的ajax.js 文件?在我看来,Spine.Model.Ajax 不是一个对象。
Have you included the ajax.js file from spine? It seems to me that Spine.Model.Ajax is not an object.
为了清楚起见。要解决此问题,我必须将
'spine/lib/ajax'
添加到模块列表下的 slug.json 和require('spine/lib/ajax')
> 在 setup.coffee 中。For clarity. What I had to do to resolve this issue was add
'spine/lib/ajax'
to slug.json under the modules list andrequire('spine/lib/ajax')
in setup.coffee.