gpt4 book ai didi

javascript - 未捕获的语法错误 : missing ) after argument list using AngularJS

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:58:19 24 4
gpt4 key购买 nike

我收到语法错误:

Uncaught SyntaxError: missing ) after argument list

来自这个 AngularJS 代码:

dataProvider.CustomAssets.save({
'product' : product.id,
'store' : store.id
})
.then(function(asset){
$scope.product.assets.key.push(
name : asset[0],
additionalPrice : asset[1],
file : asset[2],
attribute : asset[3]
);
})
.catch(function(error){
$log.error(error);
});

什么样的错误会导致这个 AngularJS 语法错误?

最佳答案

您忘记用 {} 包装对象。

 $scope.product.assets.key.push(
name : asset[0],
additionalPrice : asset[1],
file : asset[2],
attribute : asset[3]
);

试试这个

 $scope.product.assets.key.push({
name : asset[0],
additionalPrice : asset[1],
file : asset[2],
attribute : asset[3]
});

关于javascript - 未捕获的语法错误 : missing ) after argument list using AngularJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34378045/

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