我是靠谱客的博主 虚心河马,最近开发中收集的这篇文章主要介绍解决:使用ss-calendar组件(Dcloud插件)报错 “TypeError: date.split is not a function“,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

报错情况:

vendor.js? [sm]:6707 [Vue warn]: Error in created hook: "TypeError: date.split is not a function"

found in

---> <SsCalendar> at components/ss-calendar/ss-calendar.vue
       pages/myInterGral/myInterGral.vue(env: Windows,mp,1.05.2204250; lib: 2.26.0

TypeError: date.split is not a function
    at ss-calendar.js? [sm]:340
    at Array.forEach (<anonymous>)
    at _loop (ss-calendar.js? [sm]:338)
    at VueComponent.getCurrentMonthDays (ss-calendar.js? [sm]:351)
    at VueComponent.getDayList (ss-calendar.js? [sm]:277)
    at VueComponent.initDate (ss-calendar.js? [sm]:190)
    at VueComponent.created (ss-calendar.js? [sm]:186)
    at invokeWithErrorHandling (vendor.js? [sm]:7954)
    at callHook (vendor.js? [sm]:10246)
    at VueComponent.Vue._init (vendor.js? [sm]:11054)(env: Windows,mp,1.05.2204250; lib: 2.26.0)

报错截图:

解决办法:

其实这个报错不是我们引入错误也不是我们代码书写错误,而是组件内部本身有错误

 找到该组件:

然后找到这个地方:

 

这里的date其实是数组类型,我们只需要:

将date转为真正的字符串类型 

  checks.forEach(date => {
           date=typeof(date)
          const dateArr = date.split('-')

最后

以上就是虚心河马为你收集整理的解决:使用ss-calendar组件(Dcloud插件)报错 “TypeError: date.split is not a function“的全部内容,希望文章能够帮你解决解决:使用ss-calendar组件(Dcloud插件)报错 “TypeError: date.split is not a function“所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部