- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试减少对象数组(在我的例子中是配置值)。我的数组看起来像这样:
const settings = [
{room: null, key: 'radioEnabled', value: true},
{room: 24, key: 'radioEnabled', value: false},
{room: 24, key: 'name', value: 'Jack'},
{room: 23, key: 'name', value: 'Mike'},
{room: 23, key: 'radioEnabled', value: false},
{room: null, key: 'tvEnabled', value: false},
];
这个数组没有任何顺序。
如果一个房间设置为 null
,这意味着它是一个全局设置。全局设置可以被本地设置覆盖。
我正在尝试编写一个函数来获取房间的所有设置。对于 24 号房间,它应该返回:
[
{room: 24, key: 'radioEnabled', value: false},
{room: 24, key: 'name', value: 'Jack'},
{room: null, key: 'tvEnabled', value: false},
]
返回值的顺序对我来说并不重要。我已经能够以不止一种方式实现这一目标,但这些解决方案对我来说似乎并不那么优雅/可读。谁能提出一个更优雅的想法?
我的解决方案在下方和 jsfiddle 上.
const settings = [
{room: null, key: 'radioEnabled', value: true},
{room: 24, key: 'radioEnabled', value: false},
{room: 24, key: 'name', value: 'Jack'},
{room: 23, key: 'name', value: 'Mike'},
{room: 23, key: 'radioEnabled', value: false},
{room: null, key: 'tvEnabled', value: false},
];
const getAll_1 = function(room){
return settings.reduce( (a, b) => {
// remove all other rooms
if(b.room && b.room!== room){
return a;
}
// see if the setting is already added
let found = a.find( (setting) => {
return setting.key === b.key;
})
// we already have a local value in our return array, don't add/replace anything
if( found && found.room === room) {
return a;
}
// we have a value, but it's not local. Replace the current value with the new one
if( found ) {
const index = a.findIndex( (setting) => {
return setting.key === b.key;
})
a[index] = b;
return a;
}
// we don't have this setting at all. add it.
return a.concat(b);
}, []);
}
const getAll_2 = function(room){
return settings
// first filter out all other room settings, only keep current room and global values
.filter( (setting) => {
return setting.room === null || setting.room === room;
})
// than sort em so all local (high prio) values are up top
.sort( (a, b) => {
return (a.room > b.room) ? -1 : ( a.room < b.room ) ? 1 : 0;
})
// reduce the array, adding only global values if they are not already added as local value
.reduce( (a, b) => {
const found = a.find( (setting) => {
return setting.key === b.key;
})
if (found){
return a;
}
return a.concat(b);
}, [])
}
console.log(`Stack Overflow does not support console.table. Open your console for better representation`);
console.log(`getAll_1 response:`);
console.table(getAll_1(24));
console.log(`getAll_2 response:`);
console.table(getAll_2(24));
Check your console
最佳答案
另一种可能有助于也可能不会满足您的基本要求的方法是将其转换为更有用的格式:
const roomSettings = settings => {
const globals = settings.filter(s => s.room == null)
.reduce((all, {key, value}) => ({...all, [key]: value}), {})
return settings.filter(s => s.room != null)
.reduce((all, {room, key, value}) => ({
...all,
[room]: {...(all[room] || globals), [key]: value}
}), {} )
}
const settings = [{"key": "radioEnabled", "room": null, "value": true}, {"key": "radioEnabled", "room": 24, "value": false}, {"key": "name", "room": 24, "value": "Jack"}, {"key": "name", "room": 23, "value": "Mike"}, {"key": "radioEnabled", "room": 23, "value": false}, {"key": "tvEnabled", "room": null, "value": false}, {"key": "name", "room": 25, "value": "Beth"}]
console.log(roomSettings(settings))
请注意,这会返回如下内容:
{
23: {
radioEnabled: false,
tvEnabled: false,
name: "Mike"
},
24: {
radioEnabled: false,
tvEnabled: false,
name: "Jack"
},
25: {
radioEnabled: true,
tvEnabled: false,
name: "Beth"
}
}
(我添加了 'Beth' 至少有一个不是 false
/false
。)
这种格式看起来更有用,但它肯定不适合你。
关于javascript - 优雅的reduce函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54463177/
您如何优雅编码同一tableView中的两种类型的单元格? 显然我可以这样: NSDictionary *cellInfo = [_userInformation objectAtIndex:inde
假设我正在编写一个仅包含标题或主要包含标题的库,并且具有以下代码: using my_type = int; namespace detail { inline void foo() { my
我正在使用复选框和输入进行一系列启用/禁用选择,我想知道我是否可以使用循环、变量或复合语句来简单地处理这个js?感觉就像是使用大量代码来实现相对简单的功能。 这是我正在做的事情的一个 fiddle :
我正在尝试为来自维基百科的 API 响应编写一个解析器。它真的很困惑,我已经求助于旧的 RegEx 来清理大部分东西。然而,我坚持这一点。考虑一个字符串: var a ="[[December 1]
我正在通过一个 channel 接收多个消息,并在对其进行迭代之后,我想保留最后一个元素以供进一步使用。我的第一个(可能很糟糕!)方法是声明一些变量,然后在每个循环中分配它。 let last = 0
我正在编写一个 PHP Web 应用程序,它将在不久的将来在生产环境下运行,而不是使用非用户友好的 die() , 我想我会想出一个 Class处理错误消息。 基本上,我的思考过程是这样的: 如果 W
我们有 elb 负载平衡 2 台运行 tomcat 作为应用程序服务器的 WAS 机器。要实现AWS环境下的不间断部署,我们应该, 选择部署目标 WAS。 让它停止来自 elb 的交易。(elb 暂停
何为pythonic? pythonic如果翻译成中文的话就是很python。很+名词结构的用法在中国不少,比如:很娘,很国足,很CCTV等等。 我的理解为,很+名词表达了一种特殊和强调的意味。
认为已经有对此的答案,但找不到。我一直在以某种方式解析方法选项,并想检查并确保它是最优雅/最简洁的方式。 这是我通常做的: def some_method *args options = args
我正在清理我的一个旧项目。它必须做的一件事是——给定笛卡尔网格系统和网格上的两个正方形,找到所有正方形的列表,连接这两个正方形中心的线将通过这些正方形。 这里的特殊情况是所有起点和终点都被限制在正方形
如何使系统 ( SystemB1 ) 访问另一个系统 ( SystemA::sub ) 的字段,就好像它是自己的字段一样? SystemA是一个拥有自己领域的实用系统 Sub* sub . Syste
我有一个包含约 8.000.000 条记录的 MySQL 数据库。因为我需要处理所有这些,所以我使用 BlockingQueue 作为生产者从数据库读取数据并将 1000 条记录放入队列中。 Cons
我正在让我的 HTTP 服务器正常关闭。我从帖子中获取了提示 here ,到目前为止,我的代码是这样设置的: func start() { //...... //START HTTP/
示例脚本只是“wc -m”命令的包装器,简单的符号计数器。我尝试只用“teststrings” slice 元素提供输入。并在输出监听器 goroutine 接收每个字符串的符号数。寻找一种让“wc”
我想干净/优雅地关闭 Internet Explorer。 taskkill 会关闭它,但是当重新打开它时,它会询问您是否要重新打开上一个 session 。 最佳答案 尝试 CloseMainWin
Haskell 的简洁和优雅给我留下了深刻的印象。但我在 .Net 公司工作,所以当我可以使用 F# 时我会使用它——我可能是全国数百个使用它的人中唯一的一个。 ADO.NET 或 F# 是否提供像
如果我们不想在我们的类中实现 init 方法,并且记住 NSObject 中的 init 只返回一个没有初始化的对象实例,如果我们已经得到了,我不明白调用 init 的意义带有分配的实例。我已经尝试过
我们的组织中有许多初级 Delphi 开发人员,作为向他们教授 Delphi 过程的一部分,我希望他们能够看到“干净”、编写良好、设计良好的 Delphi 代码。 我要寻找的一些标准包括: 优秀的类(
我有一个 3D 图像扫描(形状:335x306x306,总元素:31368060),我想用相同大小的 3D bool 掩码来掩盖它以返回相同大小的蒙版图像。 当我简单地用掩码索引数组时: masked
如何使适配器类适本地支持 const 和非 const 底层数据? 具体例子 RigidBody是描述对象物理属性的类。 这是其非常简化的版本(1D):- class RigidBody{ f
我是一名优秀的程序员,十分优秀!