gpt4 book ai didi

javascript - 由于 Uglifier Punc 错误,无法预编译 Rails Assets

转载 作者:行者123 更新时间:2023-11-30 21:07:33 25 4
gpt4 key购买 nike

这是我在在线 JavaScript Minifier 中从 public/assets/js 检查我的 application.js 时收到的错误:

Parse error: Unexpected token: punc (})
Line 22315, column 33

22314: url: "/products/per_amount",
22315: data: {id: quantity, product},
22316: dataType: "json",

看起来像这样:

$.ajax({
url: "/products/per_amount",
data: {id: quantity, product},
dataType: "json",
type: "GET",
...

这与 this 的错误相同但我到处都说它已修复或我尝试的解决方案不起作用。

最佳答案

看来您正在使用 Uglifier 不支持的 ES6 功能:http://es6-features.org/#PropertyShorthand .

我认为 Uglifier 的目标是 ES5,并且只接受 ES5 代码。您可以通过在 ES5 中重写代码来快速修复:

$.ajax({
url: "/products/per_amount",
data: {id: quantity, product: product},
dataType: "json",
type: "GET",

如果你想保留你的语法优点,请考虑使用 Babel 将你的代码转换为 ES5。

关于javascript - 由于 Uglifier Punc 错误,无法预编译 Rails Assets ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46477836/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com