想将angular js应用程序集成到第三方网站。 iframe是一种可能的解决方案。想知道是否有更好的方法来集成angularjs应用。
答案 0 :(得分:0)
在第三方应用程序中插入Java脚本文件并添加iframe插入代码
var finalEmbedCode = "<iframe src=\"https://www.example.com/home/?product=false&config=" + someConfig + "\" \n height=\"" + iframeHeight + " px\"\n width= \"" + iframeWidth + " px\"\n frameborder=\"0\"\n style=\"border: 0;\"></iframe>";
document.getElementById("insert-on-this-id").innerHTML = finalEmbedCode;
product和config是您可能需要或不需要的查询参数。
将上述代码放入js文件中,"insert-on-this-id"
也是html元素上的ID,您可以通过js文件添加文件,也可以从聚会方应用中插入文件,以防万一您想在任何网站上使用博客将很难找到。
干杯!