我正在尝试将面板保存为嵌入 HTML 文件,并且我正在使用.save("file_name.html," embed=True)。但是,它不起作用。如何将面板 python 中的参数化操作按钮保存为嵌入的 HTML 文件。
编码:
class ActionExample(param.Parameterized):
action = param.Action(lambda x: x.param.trigger('action'), label='Click here!')
number = param.Integer(default=0)
@param.depends('action')
def get_number(self):
self.number += 1
return self.number
action_example = ActionExample()
component = pn.Column(
pn.Row(
pn.Column(pn.panel(action_example, show_name=False, margin=0, widgets={"action": {"button_type": "primary"}, "number": {"disabled": True}}),
'**Click the button** to trigger an update in the output.'),
pn.panel(action_example.get_number, width=300), max_width=600)
)
component
现在,当我尝试将其另存为:
component.save('file_name.html',embed=True)
在 file_name.html 中不起作用。任何想法如何使它工作?谢谢!