答案 0 :(得分:3)
将var corsSupportLevel = null;
function supportsCorsInternal() {
if (corsSupportLevel !== null) return corsSupportLevel;
var xhr = new XMLHttpRequest();
if (typeof xhr.withCredentials !== 'undefined') {
// Supports CORS
corsSupportLevel = 1;
} else if (typeof XDomainRequest !== "undefined") {
// IE
corsSupportLevel = 2;
} else {
corsSupportLevel = 0;
}
return corsSupportLevel;
}
放入from roflmao import *
。
如果你这样做,那么你真的不需要使用__init__.py
。因为做roflmao.py
会毫无意义。因此,最好将代码从from roflmao import roflmao
放入roflmao.py
。