vue-mfe icon indicating copy to clipboard operation
vue-mfe copied to clipboard

getPropVal 分隔符的问题

Open givingwu opened this issue 3 years ago • 0 comments

如果 url 是 'a/b/c' 这种形式,但是后面有个函数是getPropVal:

const getPropVal = (obj, key) => {
  return key.split('.').reduce((o, k) => {
    return o[k]
  }, obj)
}

使用.来分割的 ,这里会分割不到值。

image

givingwu avatar Oct 20 '20 01:10 givingwu