原型 Class.create() 的替代方案;
是否有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看以下内容: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?
有很多很多库提供语法糖来在 javascript 中创建新的对象类型。我最喜欢的是 my.class。但如果您想调用 SOAP Web 服务,这与定义类几乎没有关系。完全有可能您根本不需要一个类:
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: