美文网首页
clojurescript两个库Warning,需要升级版本

clojurescript两个库Warning,需要升级版本

作者: 小马将过河 | 来源:发表于2020-06-29 16:46 被阅读0次

1. reagent的eagent.core/as-component过期

Status

! Compilation completed in 19.13 seconds.
1 Warnings
Warning :undeclared-var in backend/system/role/sys_role_views.cljs at 152:16
Use of undeclared Var reagent.core/as-component

 149 |     (for [parent tree]
 150 |       [:> TreeNode
 151 |        {:key (:id parent)
 152 |         :icon (reagent.core/as-component [:> ant/Icon {:type (:icon parent)}])
 153 |         :title (:name parent)}
 154 |        (for [child (:children parent)]
 155 |          [:> TreeNode
 156 |           {:key (:id child)

需要将reagent升级到最新版本1.0.0-alpha2,升级前我本地的reagent版本为0.10.0

2. kee-frame里的reagent.core/render过期

Warning :fn-deprecated in kee_frame/interop.cljs at 38:7
reagent.core/render is deprecated

  35 | (defn render-root [root-component]
  36 |   (when root-component
  37 |     (if-let [app-element (.getElementById js/document "app")]
  38 |       (reagent/render root-component
  39 |                       app-element)
  40 |       (throw (ex-info "Could not find element with id 'app' to mount app into" {:component root-component})))))
  41 | 
  42 | (defn breakpoints-or-defaults [breakpoints]

需要将kee-frame升级到最新版本0.4.0,升级前我本地的reagent版本为0.3.3.
https://github.com/ingesolvoll/kee-frame/issues/86有人提到。

建议将re-frame也升级到最新版,毕竟1.0.0了,为数不多的不是0.0.x的库了,了不起。

相关文章

  • clojurescript两个库Warning,需要升级版本

    1. reagent的eagent.core/as-component过期 Status ! Compilatio...

  • mac升级pip3报错:ReadTimeoutError: HT

    mac上装的pip版本过低,无法安装新的panda的库,提示需要升级。 “WARNING: You are usi...

  • CocoaPods版本升级

    CocoaPods版本升级 使用CocoaPods管理项目类库 错误现象 失败,提示需要CocoaPods 1.0...

  • fmdb数据库升级

    一、数据库升级背景:在老版本上开发的应用程序并未做数据库升级操作,以至于发布版本时候无法合并安装需要卸载重新安装本...

  • odoo Model xxx is declared but c

    每次升级模块后,后台会有一些warning出现,其中一条 需要在数据库中对 ir_model 模块清理对应 xxx...

  • GreeDao升级

    数据库升级: 其实就是对数据库的本身进行增删改,对数据库的表结构进行增删改的变化 升级需要的必要条件: 1.版本号...

  • React Native错误:in next release e

    升级React Native到最新版本出现了一个Warning: 这个错误出现在ListView中,在以后的版本中...

  • mongodb

    升级brew的版本库 查看outdated的库和应用 升级outdated的库和应用 清理调过期的库和应用

  • gyp ERR! stack Error: `make` fai

    问题描述 问题原因 由于升级NodeJS,核心库现在指向更新版本的 C++。需要指定特定版本的 C++ 版本才能正...

  • Unresolved reference: java

    1. 库跟IDE的版本不一致 升级IDE版本,或者降低库的版本即可,下图是升级IDE Kotlin 如果重新编译后...

网友评论

      本文标题:clojurescript两个库Warning,需要升级版本

      本文链接:https://www.haomeiwen.com/subject/qkpofktx.html