如何在不使用iframe的情况下从外部javascript文件引导angular 6应用?
我们正尝试将我们的角度应用程序作为小部件插入现有Web应用程序中。我们不允许使用iframe。我尝试使用jQuery.load(htttp:// localhost:4200 / index.html)。当我使用它时,app-root不会像iframe,embed或object那样解析其底层组件。
截至目前,我们正在使用
进行加载$(document).ready(function () {
var iframe = document.createElement('iframe');
iframe.src = "http://b360-search.ocp-ctc-core-nonprod.optum.com/index.html";
iframe.style.height = "600px";
iframe.style.width ="1500px";
iframe.style.marginRight = "80px";
var div = document.createElement('div');
div.id = "benefitSearch";
div.appendChild(iframe);
$(document.body).append(div);
}
});