gpt4 book ai didi

javascript - 有没有办法将 Jupyter 笔记本集成到我的 Web 应用程序中

转载 作者:行者123 更新时间:2023-12-03 10:03:24 28 4
gpt4 key购买 nike

我希望我自己的代码编辑器通过 jupyter notebook 执行代码,并且必须在我的 Web 应用程序 UI 中显示结果

最佳答案

最简单的方法是将整个页面嵌入iframe :

<iframe src="http://localhost:8888" />

需要注意的一件事是 Jupyter notebook 默认只允许通过设置 frame-ancestors 来嵌入来自同一来源的页面。在标题中:
'headers': {
'Content-Security-Policy': "frame-ancestors 'self'"
}

为了将其嵌入到您自己的应用程序中,您需要覆盖 jupyter_notebook_config.py 中的设置允许任何页面嵌入它:
c.NotebookApp.tornado_settings = {
'headers': {
'Content-Security-Policy': "frame-ancestors *"
}
}

关于javascript - 有没有办法将 Jupyter 笔记本集成到我的 Web 应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38582167/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com