gpt4 book ai didi

javascript - 带有数据的类如何加载

转载 作者:太空宇宙 更新时间:2023-11-03 22:36:12 25 4
gpt4 key购买 nike

我正在尝试使用 javascript 为产品建模:

var Product = {};
Product.getSku = function() {
return this.sku;
}
Product.getPrice = function() {
return this.price
}
Product.getName = function() {
return this.name
}
module.exports = Product;

创建具有所需属性的对象的正确方法是什么?

我来自 oop​​ 背景,我对 js 的看法是否错误?

最佳答案

在 OOP 中你会怎么做?

您可能会有以下选择:

  • 通过 setter(您已经有了 getter)。
  • 通过构造函数。
  • 直接通过字段。

第一个和最后一个是显而易见的。

接下来你可能会做类似的事情:

var Product = function(sku, price, name) {
this.sku = sku;
this.price = price;
this.name = name;
}

var product = new Product(1, 2.34, "FiveSix");

此方法的一种变体是将对象作为单个参数传递:

var Product = function(data) {
var productData = data || {};
this.sku = productData.sku;
this.price = productData.price;
this.name = productData.name;
}

关于javascript - 带有数据的类如何加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28528444/

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