-1

基本上我已经创建了一个对象,该对象使用一种方法将对象中的多个属性添加在一起。但是当我尝试将该方法调用到控制台日志时,它会向我发出代码(这是一个 if 语句),而不是我希望它返回的值,所以我很困惑!为什么会这样?下面的代码:

var Granite = function(ty, gr, th, wi, le, ed, ad){
    this.type = ty;
    this.group = gr;
    this.thickness = th;
    this.width = wi;
    this.length = le;
    this.edgeProfile = ed;
    this.addOns = ad;
    this.groupPrice = function(){
        if (thickness === 20){
            switch(group)
            {
            case 1:
              return 160;
              break;
            case 2:
              return 194;
              break;
            case 3:
              return 244;
              break;
            case 4:
              return 288;
              break;
            case 5:
              return 336;
              break;
            case 6:
              return 380;
              break;
            default:
              return 380;
            }
        }else{
            switch(group)
            {
            case 1:
              return 200;
              break;
            case 2:
              return 242;
              break;
            case 3:
              return 305;
              break;
            case 4:
              return 360;
              break;
            case 5:
              return 420;
              break;
            case 6:
              return 475;
              break;
            default:
              return 475;
            }
        }   
    }
    this.price = function(){
        if(length <= 2000 && length > 1000){
            return ((edgeProfile + groupPrice)*2) - addOns;
        }else if(length <= 3000 && length > 2000){
            return ((edgeProfile + groupPrice)*3) - addOns;         
        }else if(length <= 4000 && length > 3000){
            return ((edgeProfile + groupPrice)*4) - addOns;         
        }else if(length <= 5000 && length > 4000){
            return ((edgeProfile + groupPrice)*5) - addOns;         
        }
    }
}

var granite1 = new Granite("Rosa Porrino", 1, 30, 400, 3200, 30.05, 86.18);

console.log(granite1.groupPrice);

它将 groupPrice 方法中的完整 if 语句返回给我

4

2 回答 2

5

您不是在调用该方法,而是向控制台、log() 提供函数参考。在 JavaScript 中,您需要使用 '()' 来调用函数。

这肯定会奏效console.log(granite1.groupPrice());

在this.price旁边

使用 this.groupPrice(). 代替groupPrice

修改了这个,价格方法

 this.price = function(){
        if(length <= 2000 && length > 1000){
            return ((this.edgeProfile + this.groupPrice())*2) - addOns;
        }else if(length <= 3000 && length > 2000){
            return ((this.edgeProfile + this.groupPrice())*3) - addOns;         
        }else if(length <= 4000 && length > 3000){
            return ((this.edgeProfile + this.groupPrice())*4) - addOns;         
        }else if(length <= 5000 && length > 4000){
            return ((this.edgeProfile + this.groupPrice())*5) - addOns;         
        }
    }
于 2012-11-12T14:46:24.360 回答
4

如果您正在调用该函数,请附加 () 否则您只是在引用该函数。

于 2012-11-12T14:46:19.950 回答