- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
作为 Learn JavaScript Properly 的一部分,我正在研究 JavaScript:权威指南 ,我在推理第 7 章数组方法部分的 filter()
方法时遇到了麻烦。
这是提供的示例:
The
filter()
method returns an array containing a subset of the elements of the array on which it is invoked. The function you pass to it should be predicate: a function that returns true or false. The predicate is invoked just as forforEach()
andmap()
. If the return value is true, or a value that converts to true, then the element passed to the predicate is a member of the subset and is added to the array that will become the return value.Examples:
a = [5, 4, 3, 2, 1];
smallvalues = a.filter(function(x) { return x < 3 }); // [2, 1]
everyother = a.filter(function(x,i) { return i%2==0 }); // [5, 3, 1]
我感到困惑的是 i
是如何应用到 everyother
行中的 x
的。这是我认为正在发生的事情:
i
(a[]
的索引)正在通过函数 x
传递,该函数将谓词应用于a[]
的每个元素并返回 [4, 2]
。
然后该函数说“从 a[]
中过滤 [4, 2]
”...我真的不清楚如何操作。
当我在控制台乱七八糟时,我尝试过:
everyother = a.filter(function(i) { return i%2==0 }); // returns [4, 2]
这是我所期望的,但我不明白当我将上面的代码更改为 JS 处理参数时内部发生了什么
everyother = a.filter(function(x,i) { return i%2==0 }); // returns [5, 3, 1]
(我知道数组方法是这样应用的:function(element, index, array)
)
对于这个特定的例子,对我来说很明显我可以用另一种方式得到预期的结果:
everyother = a.filter(function(x) { return x%2!=0 }); // returns [5, 3, 1]
但我怀疑这种思路恰恰忽略了示例试图传达的要点......我只是错过了它。
最佳答案
你的例子非常简单明了:
a = [5, 4, 3, 2, 1];
smallvalues = a.filter(function(x) { return x < 3 }); // [2, 1]
everyother = a.filter(function(x,i) { return i%2==0 }); // [5, 3, 1]
第一个是:»返回我小于 3 的每个元素 (x)«。结果并不令人吃惊。
第二个是:»返回索引 (i) 为偶数(包括 0)的每个元素«
x 被忽略了。
你也可以这样写 [5, 4, 3, 2, 1].filter(function(_,x){return x%2===0})
参见 MDN对于 Array.prototype.filter()
。
关于JavaScript filter() 方法混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25585353/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!