Webpack并未将所有功能捆绑在我的JS文件中

时间:2019-04-18 08:56:20

标签: javascript webpack webpack-4

我最近将Webpack集成到我的项目中,以为我网站上的JS文件构建捆绑包。解决了一些小问题之后,我就可以构建捆绑包了。在浏览器中签入后,其中一个JavaScript代码引发了以下错误。

enter image description here

检查后,我发现addComment.moveform引起了问题。

enter image description here

因此,我检查了生成的包,并意识到变量addComment的定义尚未推送到包中。为什么没有编写如下所示的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);
  }
};

1 个答案:

答案 0 :(得分:4)

这可能是因为消除了无效代码(tree shaking):如果Webpack注意到未使用某个特定功能,则将其遗漏以产生较小的包。但是Webpack只知道从JavaScript调用函数 ,而不是从用HTML硬编码的事件处理程序中知道。

解决此问题的最简单方法是按照Webpack的规则进行操作,并改为通过JavaScript附加事件处理程序。无论如何,various reasons都是更好的做法。

如果您需要将数据传递给事件处理程序(如此处所述),则可以在元素上使用data attributes并在事件处理程序函数中读出数据。