我认为这应该很简单。
我想要的只是将上下文显示到字段中。
例如:
<span>the active_id is {context.get('active_id', false)}</span>
或
<button string="the active_id is: {context.get('active_id',false)}" />
我已经花了几天时间寻找这个,但没有找到答案。任何帮助将不胜感激。谢谢
答案 0 :(得分:1)
您必须在模型定义中添加此字段,例如:
context_active_id = fields.Char(default=lambda self: self.env.context.get('active_id', False), store=False, readonly=True)
,然后将该字段添加到视图中。
<field name='context_active_id' />