相关文章推荐

Vue mergeProps用法详细讲解

作者:cyg_l02

这篇文章主要介绍了Vue mergeProps用法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧

很多人不知道megreProps的用法,今天我们就来讲解下mergeProps的用法以及原理

大家觉得下面哪种用法是正确的呢?

style: mergeProps({
    width: this.itemWidth
}, xProps.style)
style: mergeProps({
    style: {
        width: this.itemWidth
    ...(xProps?.style ?? {})
style: mergeProps(
      style: { width: this.itemWidth },
    xProps,
).style

你使用的话会使用上面哪一种呢?

因为写的是jsx语法,所以查看了vue3的jsx语法,发现里面并没有关于这个解释,只说到了默认开启

于是去vue3官网查找,找到

megreProps:Merge multiple props objects with special handling for certain props.

意思就说合并多个道具对象,对某些道具进行特殊处理

所以前面两种写法是错误的

接着看了下mergeProps源码的写法

// ...args将多个对象收集成数组
export function mergeProps(...args: (Data & VNodeProps)[]) {
  // 最终合并的结果
  const ret: Data = {}
  // 遍历用户传入的多个对象
  for (let i = 0; i < args.length; i++) {
    // 取到传入的对象值
    const toMerge = args[i]
    for (const key in toMerge) {
       // 对class进行序列化合并处理
      if (key === 'class') {
        if (ret.class !== toMerge.class) {
          ret.class = normalizeClass([ret.class, toMerge.class])
      // 对style进行序列化合并处理
      } else if (key === 'style') {
        ret.style = normalizeStyle([ret.style, toMerge.style])
      // 对其他的绑定的属性进行合并
      } else if (isOn(key)) {
        const existing = ret[key]
        const incoming = toMerge[key]
          incoming &&
          existing !== incoming &&
          !(isArray(existing) && existing.includes(incoming))
          ret[key] = existing
            ? [].concat(existing as any, incoming as any)
            : incoming
      // 如果是普通元素上的用户自定义属性,则直接赋值
      } else if (key !== '') {
        ret[key] = toMerge[key]
  return ret

所以你传入的对象里面是需要有style、class等key的

接下来看看normalizeClass这个方法,这个方法就是将用户写的多种格式(比如数组,对象,字符串)的class进行序列化成字符串给到最终渲染的元素

export function normalizeClass(value: unknown): string {
  let res = ''
  // 如果是字符串,直接返回
  if (isString(value)) {
    res = value
  // 如果是数组
  } else if (isArray(value)) {
    for (let i = 0; i < value.length; i++) {
      // 递归调用进行处理
      const normalized = normalizeClass(value[i])
      if (normalized) {
        res += normalized + ' '
  // 如果是对象, 如{ active: isActive, 'text-danger': hasError },需要把key拼接
  } else if (isObject(value)) {
    for (const name in value) {
      if (value[name]) {
        res += name + ' '
  return res.trim()

再看看normalizeStyle这个函数

export type NormalizedStyle = Record<string, string | number>
export function normalizeStyle(
  value: unknown
): NormalizedStyle | string | undefined {
  // 如果是数组的情况
  if (isArray(value)) {
    const res: NormalizedStyle = {}
    for (let i = 0; i < value.length; i++) {
      const item = value[i]
      const normalized = isString(item)
        ? parseStringStyle(item)
        : (normalizeStyle(item) as NormalizedStyle)
      if (normalized) {
        // 将序列化后的style保存到ret上
        for (const key in normalized) {
          res[key] = normalized[key]
    return res
  } else if (isString(value)) {
    return value
  } else if (isObject(value)) {
    return value

parseStringStyle函数就是将字符串对;进行分割,然后设置对应的key,value

元素上的style只能使用string,所以在最终挂在到dom元素上需要进行stringifyStyle

export function stringifyStyle(
  styles: NormalizedStyle | string | undefined
): string {
  let ret = ''
  if (!styles || isString(styles)) {
    return ret
  for (const key in styles) {
    const value = styles[key]
    const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key)
      isString(value) ||
      (typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))
      // only render valid values
      ret += `${normalizedKey}:${value};`
  return ret

所以通过简单的对vue3的mergeProps的代码进行简单分析就能知道其原理了,使用上也会更加的熟练

到此这篇关于Vue mergeProps用法详细讲解的文章就介绍到这了,更多相关Vue mergeProps内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
  • Vue3源码分析组件挂载创建虚拟节点
    Vue3源码分析组件挂载创建虚拟节点
    2022-10-10
  • Vue项目设置可以局域网访问
    Vue项目设置可以局域网访问
    2022-10-10
  • vue父组件异步传递props值,子组件接收不到解决方案
    vue父组件异步传递props值,子组件接收不到解决方案
    2022-10-10
  • Vue3组件挂载之创建组件实例详解
    Vue3组件挂载之创建组件实例详解
    2022-10-10
  • Vue中如何设置全局的cookie对象
    Vue中如何设置全局的cookie对象
    2022-10-10
  • vue实现监听数值的变化,并捕捉到
    vue实现监听数值的变化,并捕捉到
    2022-10-10
  • 前端Vue设置cookie、删除cookie,获取cookie方式
    前端Vue设置cookie、删除cookie,获取cookie方式
    2022-10-10
  • Vue mergeProps用法详细讲解
    Vue mergeProps用法详细讲解
    2022-10-10
  • 美国设下计谋,用娘炮文化重塑日本,已影响至中国
    美国设下计谋,用娘炮文化重塑日本,已影响至中国
    2021-11-19
  • 时空伴随者是什么意思?时空伴随者介绍
    时空伴随者是什么意思?时空伴随者介绍
    2021-11-09
  • 工信部称网盘企业免费用户最低速率应满足基本下载需求,天翼云盘回应:坚决支持,始终
    工信部称网盘企业免费用户最低速率应满足基本下载需求,天翼云盘回应:坚决支持,始终
    2021-11-05
  • 2022年放假安排出炉:五一连休5天 2022年所有节日一览表
    2022年放假安排出炉:五一连休5天 2022年所有节日一览表
    2021-10-26
  • 电脑版 - 返回首页

    2006-2023 脚本之家 JB51.Net , All Rights Reserved.
    苏ICP备14036222号

     
    推荐文章