- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 JS 中的 OOP 还比较陌生,所以请耐心等待。
假设我有一个 Restaurant
构造函数。我想将通过构造函数创建的 Menu
对象分配给每个餐厅。但是,我希望能够在 Menu
的方法中访问父 Restaurant
的属性。
最好的方法是什么?
这段代码完成了这个工作:
// Restaurant constructor
function Restaurant(name, inventory){
this.name = name;
this.inventory = inventory;
var self = this;
// Menu constructor
this.Menu = function(items){
this.items = items;
// Checks whether an item is available in the menu AND the restaurant's stock
this.isAvailable = function(item){
if(this.items.indexOf(item) !== -1 && self.inventory.indexOf(item) !== -1){
console.log(item + ' is available in ' + self.name)
}else{
console.log(item + ' is not available in ' + self.name);
}
}
}
}
// First restaurant and its menus
var Diner = new Restaurant('diner', ['steak', 'fish', 'salad']);
var Entrees = new Diner.Menu(['steak', 'fish']);
var Appetizers = new Diner.Menu(['shrimp']);
// Not available, since salad isn't in the menu
Entrees.isAvailable('salad');
// Available, since fish is in stock and in the menu
Entrees.isAvailable('fish');
// Not available, since shrimp is not in stock
Appetizers.isAvailable('shrimp');
// Different restaurant and its menus
var BurgerJoint = new Restaurant('burger joint', ['burger', 'fries', 'ketchup']);
var Sides = new BurgerJoint.Menu(['ketchup', 'fries']);
var Lunch = new BurgerJoint.Menu(['fries', 'burger', 'mustard']);
Sides.isAvailable('salad');
Sides.isAvailable('fries');
Lunch.isAvailable('mustard');
但是,这会产生一个陷阱,即 isAvailable 方法(和其他类似方法)无法移动到原型(prototype),因为它们依赖于通过 self< 获取
属性。最接近的方法是将 Restaurant
的属性。/Menu
构造函数替换为:
var self = this;
// Menu constructor
this.Menu = function(items){
this.items = items;
}
this.Menu.prototype = {
isAvailable:function(item){
//...
}
}
然而,这仍然为每个Restaurant
创建一个新的原型(prototype),尽管它确实在餐厅的菜单之间共享原型(prototype)。感觉还是不太理想。
另一个选项是取消 Menu
构造函数与 Restaurant
的关联,并在创建新菜单时传入 Restaurant
对象。像这样:
// Restaurant constructor
function Restaurant(name, inventory){
this.name = name;
this.inventory = inventory;
}
// Menu constructor
function Menu(restaurant, items){
this.restaurant = restaurant
this.items = items;
}
Menu.prototype = {
isAvailable:function(item){
if(this.items.indexOf(item) !== -1 && this.restaurant.inventory.indexOf(item) !== -1){
console.log(item + ' is available in ' + this.restaurant.name)
}else{
console.log(item + ' is not available in ' + this.restaurant.name);
}
}
}
新菜单的创建方式如下:
var Entrees = new Menu(Diner, ['steak', 'fish']);
这感觉不对,主要是因为语法不直观,并且菜单
本身并没有与餐厅
链接。
那么,正确的做法是什么?有这些吗?完全不同的方式?
最佳答案
原型(prototype)是您在 PON 上构建的东西,而不是构建新的。例如,您有:
this.Menu.prototype = {
isAvailable:function(item){
//...
}
}
...这本质上是用一个对象替换原型(prototype)...虽然您不会因此而入狱,但它确实要求您在该一个对象的上下文中完成所有“构造”。恶心。
这是一个基于您的情况的模型,它将为您的前进提供良好的帮助。我多年来一直使用这种方法。它非常灵活和可扩展——感觉(看起来有点像)“真正的”编程(例如 java、C# 等),而不是困惑的 jquery。
您会注意到我们通过一个简洁的“p”变量构建了原型(prototype)。我还喜欢推迟对函数的初始化,这样我们就可以将构造函数保持在顶部。
// ------------------------
// Restaurant "class"
// ------------------------
function Restaurant(params){
this.init(params);
}
var p = Restaurant.prototype;
// I like to define "properties" on the prototype here so I'm aware of all the properties in this "class"
p.name = null;
p.inventory = null; // Don't put arrays or objects on the prototype. Just don't, initialize on each instance.
p.menus = null;
p.init = function(params){
this.name = params.name;
this.inventory = params.inventory || []; // default to empty array so indexOf doesn't break
this.menus = {};
if(params.menus){
for(var prop in params.menus){
this.addMenu(prop, params.menus[prop]);
}
}
}
p.addMenu = function(name, items){
this.menus[name] = new Menu({
restaurant : this,
items : items
});
}
p.getMenu = function(name){
return this.menus[name];
}
// ------------------------
// Menu "class"
// ------------------------
function Menu(params){
this.init(params);
}
var p = Menu.prototype;
p.items = null;
p.restaurant = null;
p.init = function(params){
this.items = params.items || []; // default to an empty array
this.restaurant = params.restaurant;
}
p.isAvailable = function(item){
if(this.items.indexOf(item) !== -1 && this.restaurant.inventory.indexOf(item) !== -1){
console.log(item + ' is available in ' + this.restaurant.name)
}else{
console.log(item + ' is not available in ' + this.restaurant.name);
}
}
// First restaurant and its menus
var Diner = new Restaurant({
name : 'diner',
inventory : ['steak', 'fish', 'salad'],
menus : {
entrees : ['steak', 'fish'],
// appetizers : ['shrimp'] // maybe add this a different way (below)
}
});
// ... add a menu another way
Diner.addMenu('appetizers', ['shrimp']);
// Not available, since salad isn't in the menu
Diner.menus.entrees.isAvailable('salad');
// Available, since fish is in stock and in the menu
Diner.getMenu('entrees').isAvailable('fish');
// Not available, since shrimp is not in stock
Diner.menus.appetizers.isAvailable('shrimp');
// or
// Diner.getMenu('appetizers').isAvailable('shrimp');
就其值(value)而言,我还喜欢将每个类包装到一个闭包中,并将每个类作为它自己的文件:
// ------------------------
// Restaurant "class"
// ------------------------
// Start the closure
this.myApp = this.myApp || {};
(function(){
// All this is the same as above ...
function Restaurant(params){
this.init(params);
}
var p = Restaurant.prototype;
p.init = function(){
... yada ...
// Here we finish the closure and add the primary function as a property
// to the "myApp" global object. So I'm essentially building up "myApp"
// kinda the same way as we built up the prototype.
myApp.Restaurant = Restaurant;
());
我会将其放入它自己的文件中,然后在开发过程中,只需在 HTML 中为每个类执行一个 < script src="..."> 即可。对于生产,我可以合并所有文件。
在这种方法下,使用它的方法是:
var Diner = new myApp.Restaurant({
name : 'diner',
inventory : ['steak', 'fish', 'salad'],
menus : {
entrees : ['steak', 'fish'],
// appetizers : ['shrimp']
}
});
// ... and the rest is the same as above.
希望这有帮助。
关于javascript - 嵌套构造函数的最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40952737/
所以我试图设置“内容”类的高度,但它似乎不起作用。我对嵌套 DIV 非常陌生,我已经尝试了我在谷歌搜索中发现的修复程序,但似乎没有任何效果。帮助?
好的,所以我一直在四处寻找,但找不到这个问题的答案。但是,我需要将一个 View 嵌套在另一个 View 中。 我有一个 $layout 正在使用我拥有的 default.layout Blade 文
好的,所以我一直在四处寻找,但找不到这个问题的答案。但是,我需要将一个 View 嵌套在另一个 View 中。 我有一个 $layout 正在使用我拥有的 default.layout Blade 文
基本上,我的问题很简单,但它需要知道 Struts 1.1 并且还活着的人。 我尝试构建的伪代码看起来像这样: IF element.method1 = true THEN IF element
我正在尝试将 Excel 嵌套 IF 语句转换为代码语言,但我不确定我是否正确执行此操作,希望能得到一些帮助 这是Excel语句: =IF(D3="Feather",IF(OR(I3>1000,R3=
如果我们创建两个或三个评论并对其进行多次回复,则“有用”链接在单击时会导致问题,它会对具有相同编号的索引执行 ng-click 操作,从而显示具有相同索引的所有文本。如何解决此嵌套问题,以便在单击链接
我在项目中使用Scala,想与Stripe集成,但它只提供Java API。例如,要创建 session ,我使用: val params = new util.HashMap[String, Any
以下代码有一个 Div,其中连续包含四个较小的 Div。四个 Div 中的每一个还包含一个较小的 Div,但此 Div 未显示。我尝试了各种显示和位置组合,看看 div 是否会出现。 classGoa
我在这里有一个问题,循环是: for (i=0; i < n; ++i) for (j = 3; j < n; ++j) { ...
我正在尝试编写代码来显示具有奇数宽度的形状。形状完成后,将其放置在外部形状内。用户将能够输入用于形状的字符和行数。我希望生成一个形状,并通过 for 循环生成一个外部形状。 ***** .
$(".globalTabs").each(function(){ var $globalTabs = $(this); var parent = $globalTabs.parent
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
所以我在这个问题上遇到了一些麻烦,因为变量 i。我只是不确定在第二个 while 循环中如何处理它。对于我的外循环,我知道它将运行 log_4(n^2) 次迭代。对于内部 while 循环,我计算的迭
我似乎找不到在枚举上应用多个 if/then 逻辑的工作方式。 anyOf 不应用条件逻辑,而是表示如果其中任何一个匹配则很好。 allOf 再次不应用条件逻辑,而是测试属性/必填字段的超集。 这是一
如何访问 ReaderT 的内部 monad。 在我的例子中,我有类型: newtype VCSSetupAction a = VCSSetupAction (ReaderT (Maybe VCSCo
这个问题在这里已经有了答案: Add leading zeroes/0's to existing Excel values to certain length (7 个回答) 7年前关闭。 我正在寻
我已经绑定(bind)了很多 AND/OR 函数的组合并且没有运气。 这是我需要创建的: 在 B 列中,我有公司 ID,范围从两个数字字符到六个数字字符。 我需要在 B 列中的每个公司 ID 之前的每
我是 VBA 新手,在尝试编写的宏中使用 If 语句时遇到了一些困难。每个月我都会收到一份 Excel 报告,其中列出了我们公司的哪些员工执行了某些任务。我正在编写的宏旨在将每个员工的数据复制并粘贴到
如果在 B 列中找到单元格 A1 中的值,则使用文本 321 填充除非在 C 列中找到单元格 A1 中的值,在这种情况下填充文本 121反而。如果单元格 A1 的内容不在 B 列或 C 列中,则使用
我有几十万个地址。其中一些在整数之后有粒子。如 4356 A Horse Avenue , 其他格式正常4358 Horse Avenue .有些有“A”,有些有“B”。我正在尝试删除整数和粒子之间的
我是一名优秀的程序员,十分优秀!