错误说:“未捕获的类型错误:path.split 不是函数”。我猜这个错误是由于 react-hook-form 更新造成的。有人知道吗?

时间:2021-05-02 13:51:28

标签: reactjs next.js react-hook-form

我想知道如何用新的编码方式解决这个问题。 我听说有人说这个错误是由于 react-hook-form 的更新造成的,但我不知道如何解决这个问题。如果有人知道这一点,我将不胜感激。

错误说:“未捕获的类型错误:path.split 不是函数” 我正在使用“react-hook-form”:“^7.3.6”,

    <textarea
      name="content"
      ref={register({
        required: { value: true, message: 'content is required' },
        maxLength: { value: 20000, message: 'content is too long' },
        minLength: { value: 10, message: 'content is too short' },
      })}
    ></textarea>

谢谢。

1 个答案:

答案 0 :(得分:1)

自 v7 以来,--jars 的用法发生了变化:

--conf spark.jars

此处是文档的相关 section 以获取更多信息。