我正在使用Apotomo和Rails,我有一些看起来像这样的代码:
root.find_widget(:messages).render :state => :display
工作正常。
我想传递一些数据和那个电话。我该怎么做?
我想象这样的事情:
root.find_widget(:messages).render :state => :display, :my_variable => its_value
然后能够在窗口小部件的显示方法中访问my_variable
。
请问有办法吗?
感谢。
答案 0 :(得分:1)
您需要使用来自 Cells 的render_state
,然后构建 Apotomo 。它可以与这样的参数一起使用:
root.find_widget(:messages).render_state(:display, my_variable: its_value)