This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-09-14
Channels
- # admin-announcements (5)
- # alda (2)
- # beginners (26)
- # boot (30)
- # cider (8)
- # clojure (49)
- # clojure-argentina (1)
- # clojure-berlin (1)
- # clojure-boston (1)
- # clojure-italy (11)
- # clojure-norway (3)
- # clojure-russia (116)
- # clojurescript (156)
- # clojurex (4)
- # clojutre (9)
- # core-async (6)
- # datomic (18)
- # emacs (1)
- # events (4)
- # hoplon (159)
- # ldnclj (13)
- # luminus (4)
- # off-topic (1)
- # re-frame (14)
- # reagent (76)
Anybody tried server side pre-rendering for a re-frame application?
Do re-frame subscription arguments work in re-frame 0.4.1?
@petrus: should be fine. The examples certainly work: https://github.com/Day8/re-frame/blob/master/examples/todomvc/project.clj#L5
@mikethompson the todomvc examples don't seem to have any parameterised subscriptions? https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/subs.cljs
Good point
But they should work. That version has been out there for the longest time
Are you sure you are putting them in a vector ...
like this: (subscribe [:some-id 3 4])
NOT this mistake (subscribe :some-id 3 4)
notice no vector
I'm off to bed. Nite
@petrus: i'm on 0.4.1 and using subscription args - they are working for me