在使用processhtml在html文件中内联插入脚本时,我们如何包括调试JS的方法?
上下文:html文件将作为字符串读取,并用作iframe的srcdoc参数。
所以说iframe.html就像:
<html>
<body>
<!-- build:js:test inline jsfile.min.js -->
<script src="filepath/jsfile.js"></script>
<!-- /build -->
</body>
</html>
然后我实际上创建了一个像这样的iframe:
var htmlFileContents = readHtmlFileContents('iframe.html');
iframe.srcdoc = htmlFileContents;
问题:
//# sourceURL=dynamicScript.js
以便有效调试jsfile.js吗?