是否有可能让javascript构造函数返回不同的对象类型?

前端之家收集整理的这篇文章主要介绍了是否有可能让javascript构造函数返回不同的对象类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做这样的事情:
function AjaxRequest (parameters) {
    if (window.XMLHttpRequest) {
        this = new XMLHttpRequest();
    else if (typeof ActiveXOBject != 'undefined')
        this = new ActiveXObject("Microsoft.XMLHTTP");
}

AjaxRequest.prototype.someMethod = function () { ... }

有没有办法做到这一点?

解决方法

嗯.不,我不这么认为.这是不可设定的.虽然您可以为其添加属性,但您无法对其进行更改.你可以 make calls that cause this to be set,但你不能直接设置它.

你可以这样做:

function AjaxRequest (parameters) { 
    this.xhr = null;
    if (window.XMLHttpRequest) { 
        this.xhr = new XMLHttpRequest();  
    }
    else if (typeof ActiveXOBject != 'undefined') {
        this.xhr = new ActiveXObject("Microsoft.XMLHTTP"); 
    }  
}

AjaxRequest.prototype.someMethod = function (url) { 
    this.xhr.open('Get',url,true);
    this.req.onreadystatechange = function(event) {
        ...
    };
    this.xhr.send(...);
};

退后一步,我认为你的设计不是很清楚.你想做什么?另一种问题是你正在拍摄的使用模式是什么?你想从AjaxRequest公开什么动词有哪些方法

如果你看一下jQuery,他们的“ajax请求”不是一个对象,它就是一种方法. $阿贾克斯()….

你有什么想法?

这将决定你如何使用xhr属性,等等.

原文链接:https://www.f2er.com/js/151179.html

猜你在找的JavaScript相关文章