我正在尝试在我的 Python 代码中使用 leaflet.js 库的一些功能。为了在代码中执行 JS 命令,我使用的是 PyV8。但我无法将 leaflet.js 库加载到 PyV8 上下文中。当我这样做时,
ctxt.eval(open("leaflet.js").read())
我得到错误:
ReferenceError: window is not defined ( @ 9 : 68 ) -> of t.coords[c]&&(u[c]=t.coords[c]);this.fire("locationfound",u)}})}(window,doc
我什至尝试加载 jquery 库,然后才考虑可能传单依赖于它。但后来我得到了错误,
TypeError: Cannot read property 'defaultView' of undefined ( @ 2 : 68 ) -> :!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultVi
有没有办法可以成功加载 JS 库?