gpt4 book ai didi

python - 如何在 CefPython 中启用外部文件链接?

转载 作者:太空宇宙 更新时间:2023-11-03 20:48:37 26 4
gpt4 key购买 nike

我正在开发一个 CEFPython 应用程序,它要求我包含一些外部文件,例如 JS 或 CSS 库。但是 HTML 文件中提到的任何外部路径(指同一文件夹中存在的外部库和在线资源 URL)似乎是 Not Acceptable ,我确信缺少一个启用外部文件喜欢的标志,但我无法弄清楚是哪个。下面是我的主要功能的代码:

def main():
sys.excepthook = cef.ExceptHook # To shutdown all CEF processes on error
# To change user agent use either "product_version"
# or "user_agent" options. Explained in Tutorial in
# "Change user agent string" section.
settings = {
# "web_security_disabled": True,
# "user_agent": "MyAgent/20.00 MyProduct/10.00",

}
cef.Initialize(settings=settings)
browser = cef.CreateBrowserSync(url=html_to_data_uri(HTML_code),
window_title="Demo Program")
set_javascript_bindings(browser)
cef.MessageLoop()
cef.Shutdown()

最佳答案

“web_security_disabled”设置必须在浏览器创建中传递,而不是在 cef 初始化中传递。

示例:

settings = {
"web_security_disabled": True,
}


def launcher(url):
sys.excepthook = cef.ExceptHook # To shutdown all CEF processes on error
cef.Initialize()
cef.CreateBrowserSync(url=url, window_title="my title", settings=settings)
cef.MessageLoop()
cef.Shutdown()

关于python - 如何在 CefPython 中启用外部文件链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56407590/

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