解決pyecharts執行後產生的html檔案用瀏覽器開啟空白
阿新 • • 發佈:2020-03-12
根據網站資源引用說明:pyecharts 使用的所有靜態資原始檔存放於 pyecharts-assets 專案中,預設掛載在https://assets.pyecharts.org/assets/
因為預設優先從遠端引用資源,這就導致有的時候無法載入js檔案,圖表顯示不出來
解決辦法:
下載所需js檔案到本地,修改資源引用地址
看網站的介紹,pyecharts 提供了更改全域性 HOST 的快捷方式
官方下載
pyecharts-assets 提供了pyecharts的靜態資原始檔。
可通過 localhost-server 或者 notebook-server 啟動本地服務。首先將專案下載到本地
# 通過 git clone $ git clone https://github.com/pyecharts/pyecharts-assets.git # 或者直接下載壓縮包 $ wget https://github.com/pyecharts/pyecharts-assets/archive/master.zip
Localhost-Server
啟動伺服器
$ cd pyecharts-assets $ python -m http.server
設定 host
# 只需要在頂部宣告 CurrentConfig.ONLINE_HOST 即可 from pyecharts.globals import CurrentConfig CurrentConfig.ONLINE_HOST = "http://127.0.0.1:8000/assets/" # 接下來所有圖形的靜態資原始檔都會來自剛啟動的伺服器 from pyecharts.charts import Bar bar = Bar()
Notebook-Server
安裝擴充套件外掛
$ cd pyecharts-assets # 安裝並激活外掛 $ jupyter nbextension install assets $ jupyter nbextension enable assets/main
設定 host
# 只需要在頂部宣告 CurrentConfig.ONLINE_HOST 即可 from pyecharts.globals import CurrentConfig,OnlineHostType # OnlineHostType.NOTEBOOK_HOST 預設值為 http://localhost:8888/nbextensions/assets/ CurrentConfig.ONLINE_HOST = OnlineHostType.NOTEBOOK_HOST # 接下來所有圖形的靜態資原始檔都會來自剛啟動的伺服器 from pyecharts.charts import Bar bar = Bar()
tips:
CurrentConfig.ONLINE_HOST = http://127.0.0.1:8000/assets/
可以直接修改為本機目錄:
CurrentConfig.ONLINE_HOST = "E:/Software/pyecharts-assets-master/assets/"
到此這篇關於解決pyecharts執行後產生的html檔案用瀏覽器開啟空白的文章就介紹到這了,更多相關pyecharts 瀏覽器開啟空白內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!