質問

Dumb question: how do I do Javascript assignment in Clojurescript ? I'm using a Javascript lib and need to set the value of an object's field like obj.this=that; - I don't know Javascript so maybe there's a .set method ?

役に立ちましたか?

解決

Try some thing like

(set! (.-property foo) 5)

他のヒント

Use

(aset foo "property" 5)

Be aware, that symbolic references may fail.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top