gpt4 book ai didi

javascript - 未捕获的语法错误 : Unexpected token = in Google Chrome

转载 作者:可可西里 更新时间:2023-11-01 01:21:24 25 4
gpt4 key购买 nike

我有一个接受可选参数的 javascript 函数。这在 Firefox 中运行良好,但在 Google Chrome 中显示:-

Uncaught SyntaxError: Unexpected token =

我的代码,

function errorNotification(text = "Something went wrong!") {
$.pnotify({
title: 'Error',
text: text,
type: 'error'
});
}

我见过很多类似的问题,但我无法意识到我的问题。

最佳答案

您正在使用 default parameter目前只有 Firefox 支持的功能。

function errorNotification(text) {
text = text || "Something went wrong!";
$.pnotify({
title: 'Error',
text: text,
type: 'error'
});
}

关于javascript - 未捕获的语法错误 : Unexpected token = in Google Chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19699257/

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