我最近将Webpack集成到我的项目中,以便在我的网站上为JS文件构建包。在解决了一些小问题之后,我就能够建立捆绑包了。在浏览器中检查时,其中一个Javascript代码引发了以下错误。
检查后,我意识到addComment.moveform导致了问题。
所以,我检查了生成的bundle并意识到变量addComment的定义还没有被推送到bundle。有没有理由为什么写下面的Javascript不会捆绑?没有Webpack抛出错误吗?
/**
* 'Comment Reply' to each comment.
* This script moves the Add Comment section to the position below the appropriate comment.
* Modified from Wordpress https://core.svn.wordpress.org/trunk/wp-includes/js/comment-reply.js
* Released under the GNU General Public License - https://wordpress.org/about/gpl/
*/
var addComment = {
moveForm: function(commId, parentId, respondId, postId) {
var div,
element,
style,
cssHidden,
t = this,
comm = t.I(commId),
respond = t.I(respondId),
cancel = t.I("cancel-comment-reply-link"),
parent = t.I("comment-replying-to"),
post = t.I("comment-post-slug"),
commentForm = respond.getElementsByTagName("form")[0];
if (!comm || !respond || !cancel || !parent || !commentForm) {
return;
}
t.respondId = respondId;
postId = postId || false;
if (!t.I("sm-temp-form-div")) {
div = document.createElement("div");
div.id = "sm-temp-form-div";
div.style.display = "none";
respond.parentNode.insertBefore(div, respond);
}
comm.parentNode.insertBefore(respond, comm.nextSibling);
if (post && postId) {
post.value = postId;
}
parent.value = parentId;
cancel.style.display = "";
cancel.onclick = function() {
var t = addComment,
temp = t.I("sm-temp-form-div"),
respond = t.I(t.respondId);
if (!temp || !respond) {
return;
}
t.I("comment-replying-to").value = "0";
temp.parentNode.insertBefore(respond, temp);
temp.parentNode.removeChild(temp);
this.style.display = "none";
this.onclick = null;
return false;
};
/*
* Set initial focus to the first form focusable element.
*/
document.getElementById("comment-form-message").focus();
/*
* Return false so that the page is not redirected to HREF.
*/
return false;
},
I: function(id) {
return document.getElementById(id);
}
};
这可能是因为死代码消除a.k.a.tree shaking:如果Webpack注意到没有使用特定的函数,它只是将它留下来产生一个较小的bundle。但是Webpack只知道从JavaScript调用的函数,而不是从HTML中硬编码的事件处理程序。
解决这个问题的最简单方法是使用Webpack的规则,然后通过JavaScript附加事件处理程序。无论如何,对于various reasons来说,这是更好的做法。
如果需要将数据传递给事件处理程序(就像在这里一样),可以在元素上使用data attributes并读出事件处理函数中的数据。