We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
本文为读 lodash 源码的第三百五十四篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash
gitbook也会同步仓库的更新,gitbook地址:pocket-lodash
import baseIsEqual from './baseIsEqual.js' import get from '../get.js' import hasIn from '../hasIn.js' import isKey from './isKey.js' import isStrictComparable from './isStrictComparable.js' import matchesStrictComparable from './matchesStrictComparable.js' import toKey from './toKey.js'
《lodash源码分析之baseIsEqual》
《lodash源码分析之get》
《lodash源码分析之hasIn》
《lodash源码分析之isKey》
《lodash源码分析之isStrictComparable》
《lodash源码分析之matchesStrictComparable》
《lodash源码分析之toKey》
baseMatchesProperty 会接收一个属性路径 path 和一个值 srcValue ,返回一个函数,这个函数接收一个对象 object ,会检测 object 对应路径上的值和 srcValue 是否相等。
baseMatchesProperty
path
srcValue
object
源码如下:
const COMPARE_PARTIAL_FLAG = 1 const COMPARE_UNORDERED_FLAG = 2 function baseMatchesProperty(path, srcValue) { if (isKey(path) && isStrictComparable(srcValue)) { return matchesStrictComparable(toKey(path), srcValue) } return (object) => { const objValue = get(object, path) return (objValue === undefined && objValue === srcValue) ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG) } }
首先判断 path 是否为属性名,如果是,再判断 srcValue 是否可以使用 === 严格相等比较,如果可以,则使用 matchesStrict Comparable 来生成函数。这样比接下来使用 baseIsEqual 来比较的性能要好。
===
matchesStrict Comparable
baseIsEqual
如果不符合上面的条件,则返回一个接收 object 的函数。
在函数中,首先调用 get 方法,将 object 上对应路径 path 上的值 objValue 取出。
get
objValue
如果 objValue 为 undefined ,并且 objValue 和 srcValue 严格相等,则使用 hasIn 来判断 object 上是否存在 path 路径。因为 object 上 path 路径不存在,取出的 objValue 也是 undefined 。
undefined
hasIn
其它情况,直接调用 baseIsEqual 来进行比较。
署名-非商业性使用-禁止演绎 4.0 国际 (CC BY-NC-ND 4.0)
最后,所有文章都会同步发送到微信公众号上,欢迎关注,欢迎提意见:
作者:对角另一面
The text was updated successfully, but these errors were encountered:
No branches or pull requests
本文为读 lodash 源码的第三百五十四篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash
gitbook也会同步仓库的更新,gitbook地址:pocket-lodash
依赖
《lodash源码分析之baseIsEqual》
《lodash源码分析之get》
《lodash源码分析之hasIn》
《lodash源码分析之isKey》
《lodash源码分析之isStrictComparable》
《lodash源码分析之matchesStrictComparable》
《lodash源码分析之toKey》
源码分析
baseMatchesProperty
会接收一个属性路径path
和一个值srcValue
,返回一个函数,这个函数接收一个对象object
,会检测object
对应路径上的值和srcValue
是否相等。源码如下:
首先判断
path
是否为属性名,如果是,再判断srcValue
是否可以使用===
严格相等比较,如果可以,则使用matchesStrict Comparable
来生成函数。这样比接下来使用baseIsEqual
来比较的性能要好。如果不符合上面的条件,则返回一个接收
object
的函数。在函数中,首先调用
get
方法,将object
上对应路径path
上的值objValue
取出。如果
objValue
为undefined
,并且objValue
和srcValue
严格相等,则使用hasIn
来判断object
上是否存在path
路径。因为object
上path
路径不存在,取出的objValue
也是undefined
。其它情况,直接调用
baseIsEqual
来进行比较。License
署名-非商业性使用-禁止演绎 4.0 国际 (CC BY-NC-ND 4.0)
最后,所有文章都会同步发送到微信公众号上,欢迎关注,欢迎提意见:
作者:对角另一面
The text was updated successfully, but these errors were encountered: