簡體   English   中英

如何在 object 構造函數中設置值?

[英]How to set value in object constructor?

我的腳本有問題。

為什么我的這個 object 的構造函數不知道 wynik1 的值正在改變並且總是返回“this.A”而不是改變它?

var wynik1 = (liczba1 / liczba2) * profil;

function potatos(name, moc, square, A, B, C, D, price) {
  this.name = name;
  this.moc = moc;
  this.square = square;
  this.A = A;
  this.B = B;
  this.C = C;
  this.D = D;
  this.price = function() {
    if (wynik1 < 18000) {
      return this.A;
    }
    if (wynik1 < 10000) {
      return this.B;
    }
    if (wynik1 < 5000) {
      return this.C;
    }
    if (wynik1 < 3000) {
      return this.D;
    }
  };
}

const animus = new potatos('nameone', 370, 1.7, 7533, 5670, 4800, 4200);
const anomus = new potatos(' olar', 470, 1.7, 7800, 6900, 5260, 4630);
const atopuso = new potatos('komisuslar', 780, 1.7, 7900, 6080, 5450, 4815);

var prices = (function moc() {
  if (liczba4 == "A") {
    return animus.price(4200, 4000, 3800, 3600);
  }
  if (liczba4 == "B") {
    return anomus.price(4000, 4200, 4600, 5000);
  }
  if (liczba4 == "C") {
    return atopuso.price(4200, 4500, 4800, 5300);
  }
})();

這是因為您在if(wynik1 <18000)中指定的條件在大多數情況下都是正確的,請改用此條件:

if(wynik1 <18000 && wynik1 >= 10000)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM