- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近将 Webpack 集成到我的项目中,以便为我网站上的 JS 文件构建 bundle 。解决了一些小问题后,我就可以构建 bundle 了。在浏览器中检查后,其中一个 Javascript 代码引发了以下错误。
检查后,我意识到 addComment.moveform 导致了问题。
所以,我检查了生成的包,发现变量 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);
}
};
最佳答案
这可能是因为死代码消除 a.k.a. tree shaking :如果 Webpack 注意到一个特定的函数没有被使用,它就会把它留下来生成一个更小的包。但是 Webpack 只知道 从 JavaScript 调用的函数,而不是从用 HTML 硬编码的事件处理程序调用的函数。
解决此问题的最简单方法是遵守 Webpack 的规则,并改为通过 JavaScript 附加事件处理程序。对于 various reasons 来说,这无论如何都是更好的做法.
如果您需要将数据传递给事件处理程序(就像您在这里所做的那样),您可以使用 data attributes在元素上读出事件处理函数中的数据。
关于javascript - Webpack 没有在我的 JS 文件中捆绑所有函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55742524/
我正在使用 Gunicorn 为 Django 应用程序提供服务,它工作正常,直到我将其超时时间从 30 秒更改为 900000 秒,我不得不这样做,因为我有一个用例需要上传和处理一个巨大的文件(过程
我有一个带有非常基本的管道的Jenkinsfile,它可以旋转docker容器: pipeline { agent { dockerfile { args '-u root' } } stag
在学习 MEAN 堆栈的过程中,我遇到了一个问题。每当我尝试使用 Passport 验证方法时,它都不会返回任何响应。我总是收到“localhost没有发送任何数据。ERR_EMPTY_RESPONS
在当今的大多数企业堆栈中,数据库是我们存储所有秘密的地方。它是安全屋,是待命室,也是用于存储可能非常私密或极具价值的物品的集散地。对于依赖它的数据库管理员、程序员和DevOps团队来说,保护它免受所
是否可以创建像图片上那样的边框?只需使用 css 边框属性。最终结果将是没 Angular 盒子。我不想添加额外的 html 元素。我只想为每个 li 元素添加 css 边框信息。 假设这是一个 ul
我是一名优秀的程序员,十分优秀!