This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-04-12
Channels
- # alda (3)
- # beginners (17)
- # boot (157)
- # cider (15)
- # cljs-dev (30)
- # cljsjs (4)
- # cljsrn (5)
- # clojure (70)
- # clojure-austin (3)
- # clojure-canada (2)
- # clojure-colombia (1)
- # clojure-czech (1)
- # clojure-dev (27)
- # clojure-greece (34)
- # clojure-japan (6)
- # clojure-russia (114)
- # clojure-sg (3)
- # clojure-uk (8)
- # clojurescript (63)
- # cursive (9)
- # datomic (40)
- # devcards (11)
- # euroclojure (4)
- # events (8)
- # hoplon (61)
- # incanter (1)
- # instaparse (16)
- # jaunt (6)
- # jobs (6)
- # jobs-discuss (52)
- # ldnclj (1)
- # leiningen (2)
- # off-topic (3)
- # om (73)
- # onyx (101)
- # overtone (25)
- # re-frame (18)
- # reagent (6)
- # ring (7)
- # ring-swagger (36)
- # spacemacs (5)
- # sydney (1)
- # untangled (41)
- # yada (6)
@seantempesta: I don’t understand what happens. I just found this strange thing. I have a repo where a minimal case is shown (it is with React and ReactRouter, but the same happens with React Native and ReactNativeRouterFlux). https://github.com/stepugnetti/react-router-issue
hey all - quick newb question, as I’m getting annoyed with Google: What’s the best way to make an xmlhttprequest in re-natal? Do I just use ajax.core, or do I have to go down and (somehow?) use the “fetch” api in RN?
@hemingward: Both XMLHttpRequest and fetch is available in RN (as far as I remember fetch is just a promise wrapper in RN). You can pretty much create a wrapper around XHR or fetch
Here my attempt to make it https://github.com/artemyarulin/koh/blob/master/src/koh/http.cljs#L28-L59, but I guess you can use other CLJS libs for browser http
@artemyarulin: Thanks!!