Неопределенная ссылка на функцию в c ++ (g ++) с наследованием алмазов

Вы можете сделать это и с чистым JS:

// Create the XHR object.
function createCORSRequest(method, url) {
  var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
// XHR for Chrome/Firefox/Opera/Safari.
xhr.open(method, url, true);
} else if (typeof XDomainRequest != "undefined") {
// XDomainRequest for IE.
xhr = new XDomainRequest();
xhr.open(method, url);
} else {
// CORS not supported.
xhr = null;
}
return xhr;
}

// Make the actual CORS request.
function makeCorsRequest() {
 // This is a sample server that supports CORS.
 var url = 'http://html5rocks-cors.s3-website-us-east-1.amazonaws.com/index.html';

var xhr = createCORSRequest('GET', url);
if (!xhr) {
alert('CORS not supported');
return;
}

// Response handlers.
xhr.onload = function() {
var text = xhr.responseText;
alert('Response from CORS request to ' + url + ': ' + text);
};

xhr.onerror = function() {
alert('Woops, there was an error making the request.');
};

xhr.send();
}

Смотрите: для получения дополнительной информации: html5rocks tutorial

-1
задан Andre 16 January 2019 в 20:44
поделиться

1 ответ

Нашел решение и разместил его здесь для будущих ссылок. Добавление this в DataOp решает проблему:

template<typename T> struct DataOp: virtual Data<T> {
    virtual T value() { return this->data(); }
};
0
ответ дан Andre 16 January 2019 в 20:44
поделиться
Другие вопросы по тегам:

Похожие вопросы: