Spine.js 尝试使用其 Ajax 功能时出错

发布于 2024-12-12 02:44:32 字数 340 浏览 0 评论 0原文

我正在尝试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

太阳哥哥 2024-12-19 02:44:32

您是否包含了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.

梦与时光遇 2024-12-19 02:44:32

为了清楚起见。要解决此问题,我必须将 '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 and require('spine/lib/ajax') in setup.coffee.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文