我想使用Coffeescript创建一个UIObject类。这个类应该继承自jQuery,因此可以使用UIObject的实例,就好像它们是用jQuery创建的那样。
class UIObject
isObject: (val) -> typeof val is "object"
constructor: (tag, attributes) ->
@merge jQuery(tag, attributes), this
@UIObjectProperties = {}
merge: (source, destination) ->
for key of source
if destination[key] is undefined
destination[key] = source[key]
else if @isObject(source[key])
@merge(source[key], destination[key])
return
部分有效。考虑下面的Foobar类:
class Foobar extends UIObject
constructor: -> super("<h1/>", html: "Foobar")
$("body").append(new Foobar)
运行正常。但是:(新Foobar).appendTo(“body”)放置标记,但也会引发RangeError: Maximum call stack size exceeded
。
从jQuery继承是一个坏主意吗?还是有一个神殿?
对于那些不了解CoffeeScript的人来说,JavaScript源代码是:
var Foobar, UIObject;
var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) {
for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; }
function ctor() { this.constructor = child; }
ctor.prototype = parent.prototype;
child.prototype = new ctor;
child.__super__ = parent.prototype;
return child;
};
UIObject = (function () {
UIObject.prototype.isObject = function (val) {
return typeof val === "object";
};
function UIObject(tag, attributes) {
this.merge(jQuery(tag, attributes), this);
this.UIObjectProperties = {};
}
UIObject.prototype.merge = function (source, destination) {
var key;
for (key in source) {
if (destination[key] === void 0) {
destination[key] = source[key];
} else if (this.isObject(source[key])) {
this.merge(source[key], destination[key]);
}
}
};
return UIObject;
})();
Foobar = (function () {
__extends(Foobar, UIObject);
function Foobar() {
Foobar.__super__.constructor.call(this, "<h1/>", {
html: "Foobar"
});
}
return Foobar;
})();
答案 0 :(得分:0)
这确实有点难以实现(但很有创意!),因为jQuery和CoffeeScript类都有关于.constructor()
方法的想法。
在jQuery 1.6.4(今天在CoffeeScript主页上使用的那个)中,在这行代码中,在jQuery本身的第246行创建了一个无限递归:
var ret = this.constructor();
this
这里指向你的构造函数,但jQuery期望它指向自己。您的@merge()
方法无法正确替换构造函数。有一个更加愚蠢的出路,将@merge()
方法更改为:
merge: (source, destination) ->
for key of source
if destination[key] is undefined
destination[key] = source[key]
else if @isObject(source[key])
@merge(source[key], destination[key])
@constructor = jQuery
“尝试coffeescript”的休闲测试表明它有效,但我会警惕后来会出现奇怪的效果,所以如果你继续这种方法,那就要彻底测试。