$.getScript 返回状态已取消并且应用程序不执行回调函数?

发布于 2024-12-17 10:37:42 字数 1342 浏览 3 评论 0 原文

环境

为了自动压缩和连接我的js文件,我使用这个工具。

安装和配置后,下面的代码将返回一个压缩的js,并与所有JS文件夹 project

问题

在我的页面中,有以下代码:

loaderPhotosPage = function(url) {
  $.getScript('/Scripts/pages/project-projectPhotos/js', function() {
    alert(url); //This code is not executed!! Here's the problem;
  });
};

alert 从未执行!

测试

为了使用 Google Chrome 开发人员工具模拟测试工具,我得到了以下结果:

在 Google Chrome 开发人员上执行的代码

查看控制台和标头。执行非常成功!

在 Google Chrome Developer 上执行的代码

现在预览结果

Google Chrome Developer 上脚本的结果

HTTP 状态为已取消,为什么?然而控制台中的代码正常运行(text: success

Http Status

我把js 文件在 链接处完成。

再测试一下:

看到get了,链接的脚本运行正常!

获取脚本

感谢您的帮助!

Environment

To automate the compression and the junction of my js files, I use this tool.

Once installed and configured, the code below returns a js compressed and concatenated with all the JS folder project

<script src="@BundleTable.Bundles.ResolveBundleUrl("~/Scripts/pages/project-projectPhotos/js")"></script>

Problem

In my page, have the following code:

loaderPhotosPage = function(url) {
  $.getScript('/Scripts/pages/project-projectPhotos/js', function() {
    alert(url); //This code is not executed!! Here's the problem;
  });
};

alert is never executed!

Tests

To simulate a test tool using Google Chrome Developer Tools, I got the following results:

Code executed on Google Chrome Developer

Look at the console, and the header. The execution is very successful!

Code executed on Google Chrome Developer

Now the preview result

Result of script on Google Chrome Developer

The HTTP status is as canceled, why? Yet the code in the console was running normally (text: success)

Http Status

I put the js file complete at this link.

Another test:

See the get, with the link of the script is running normally!

Get Script

Thanks for the help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

年少掌心 2024-12-24 10:37:42

取消状态是当前开发频道 Google Chrome 的问题。它已在上游修复,并将相应地传播到开发通道。

https://bugs.webkit.org/show_bug.cgi?id=72873

The canceled status is an issue with current dev channel Google Chrome. It has been fixed upstream and will propagate to the dev channel accordingly.

https://bugs.webkit.org/show_bug.cgi?id=72873

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文