gpt4 book ai didi

javascript - 功能问题

转载 作者:行者123 更新时间:2023-11-28 11:22:15 25 4
gpt4 key购买 nike

我收到此错误:

enter image description here enter image description here

var appname = angular.module('appname', []);

appname.controller("hipotecaController", ['$scope', function ($scope) {
$scope.hipoteca = {
capital: undefined,
anyos: undefined,
interesAplicado: "",
interes: undefined,
tipoEuribor: "",
Euribor: undefined,

interesOpcion: function () {
return $scope.hipoteca.interesAplicado === "Fijo"
}

tipoOpcion: function () {
if ($scope.hipoteca.Euribor === "EURIBOR") {
$scope.hipoteca.Euribor = 0.8;
}
else if ($scope.hipoteca.Euribor === "EURIBOR3") {
$scope.hipoteca.Euribor = 0.4;
}
}
}
}]);

我不知道发生了什么。如果我只使用一个功能,它确实可以工作。

最佳答案

当您在对象内执行此操作时,您在第一个函数声明后需要一个逗号。

interesOpcion:function(){
return $scope.hipoteca.interesAplicado==="Fijo"
},
tipoOpcion:function(){
if($scope.hipoteca.Euribor==="EURIBOR"){
$scope.hipoteca.Euribor=0.8;
}
else if($scope.hipoteca.Euribor==="EURIBOR3"){
$scope.hipoteca.Euribor=0.4;
}
}

由于tipOcion之前没有尾随逗号,因此该对象预计会关闭,因此tipOcion函数对象是一个意外标识符

关于javascript - 功能问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34201406/

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