VS2015 + Cordova + SystemJS + Security Restriction Error: 0x800c001c

VS2015 + Cordova + SystemJS + Security Restriction Error: 0x800c001c

当我为 Windows Phone 8.1 和 Windows Phone 10 调试我的 Cordova 项目时,我得到一个 Unhandled exception 0x800c001c。问题是document.write 用于 System.js.

我理解winstore-jscompat.jslink是用来解决这个问题的,<script src="...元素在索引HTML中。但是,它似乎并没有解决 Windows Phone 的动态内容问题。

当我查看 dom 时,我可以看到 winstore-jscompat.js 是由 platformOverrides.js 动态添加的,并且位于调用 system.js 之前。

项目代码可以在这里下载https://github.com/dbiele/TypeScript-Cordova-SystemJS

有什么想法吗?不确定这是否是我的构建机器的问题。注意:使用模拟器和物理设备时会出现此问题。

@guybedford 能够回答这个问题。这是他的回复:

https://github.com/systemjs/systemjs/issues/825

this is the automatic loading SystemJS does when it needs to load the Promise and URL polyfills file at - https://github.com/systemjs/systemjs/blob/master/dist/system-polyfills.js. This is always needed in IE environments including Edge. If you just include that file with a script tag manually before loading SystemJS it won't make that dynamic request anymore.

我将 platformOverrides.js 更新为:

(function () {
// Append the safeHTML polyfill
var scriptElem = document.createElement('script');
scriptElem.setAttribute('src', 'scripts/winstore-jscompat.js');
var scriptElem2 = document.createElement('script');
scriptElem.setAttribute('src', 'scripts/system-polyfills.js');
if (document.body) {
    document.body.appendChild(scriptElem);
    document.body.appendChild(scriptElem2);
} else {
    document.head.appendChild(scriptElem);
    document.head.appendChild(scriptElem2);
}
}());