原型 Class.create() 的替代方案;

发布于 2024-11-28 02:05:59 字数 140 浏览 1 评论 0原文

是否有 Class.create(); 的替代方案在 Prototype.js 中,我找到了一个调用 SOAP Webservice 并返回 javascript 对象的代码,我想将其实现到我的移动网站中,但不想使用原型,因为我使用 Zepto 和 Backbone

is there an alternate of Class.create(); of Prototype.js, i have found a code to call SOAP Webservice and return javascript object and i want to implement that in to my mobile website but don't want to use prototype because i m using Zepto and Backbone

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

凉宸 2024-12-05 02:05:59

您应该查看以下内容:John Resig 的简单 JavaScript 继承。他有另一个关于类实例化的博客,其中对这个主题有很好的解释:简单的“类”实例化< /a>.

另外,请查看这篇关于 JavaScript 继承的文章: 有没有更好的方法用jquery创建面向对象的类?

You should check out this: Simple JavaScript Inheritance by John Resig. He has another blog on class instantiation which has good explanation on this topic: Simple "Class" Instantiation.

Also, check out this post on JavaScript inheritance: Is there a better way to create an object-oriented class with jquery?

剩一世无双 2024-12-05 02:05:59

有很多很多库提供语法糖来在 javascript 中创建新的对象类型。我最喜欢的是 my.class。但如果您想调用 SOAP Web 服务,这与定义类几乎没有关系。完全有可能您根本不需要一个类:

  • 是否只有一个实例?使用对象字面量。
  • 唯一的区别是对哪些 DOM 元素进行操作?也许 jQuery 插件更适合。 (Zepto 尝试与 jQuery 实现 API 兼容。)

There are many, many libraries that provide syntactic sugar to create new object types in javascript. My favorite is my.class. But if you want to call a SOAP web service, that has next to no relation to defining a class. It's entirely possible that you don't want a class at all:

  • Will there only be one instance? use an object literal.
  • Is the only difference what DOM elements will be acted upon? Perhaps a jQuery plugin is a better fit. (Zepto tries to be API-compatible with jQuery.)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文