我正在尝试在 clojurescript中使用react-native-swipe-list-view 。但是我在转换 cljs 代码中记录的 js 代码时遇到了一些麻烦。
文件:
import { SwipeRow } from 'react-native-swipe-list-view';
<SwipeRow>
<View>
</View>
</SwipeRow>
我的 Cljs 代码:
(:require [react-native-swipe-list-view :as swipe_list])
(defn item[]
(
[swipe_list/SwipeRow
[:View]]
))
在线工具:
(def SwipeRow (.-SwipeRow (js/require "react-native-swipe-list-view")))
(defn item[]
(
[SwipeRow
[:View]]
))
以上都没有奏效。我是 cljs 的新手。如果有人能告诉我如何将上面的js行转换为cljs,那将是一个很大的帮助。谢谢