import urllib
fun open():
return urllib.urlopen('http://example.com')
但是,当example.com打开时,它不会呈现CSS或JS。如何在网络浏览器中打开网页?
@error(404)
def error404(error):
return webbrowser.open('http://example.com')
我正在用瓶子。给我错误:TypeError("'bool' object is not iterable",)
error
装饰似乎在期待一个迭代。webbrowswer.open
会在浏览器中打开一个URL并返回True
或False
,保留command-query-separation。您实际上并不想在浏览器中打开此页面,是吗?