Flask.__init__
的签名有一个static_path
参数,但未记录。该参数有什么作用?
class Flask(
import_name,
static_path=None, static_url_path=None, static_folder='static',
template_folder='templates',
instance_path=None, instance_relative_config=False, root_path=None
)
答案 0 :(得分:2)
这是static_url_path
的旧名称。它已弃用,将在1.0版本中删除。它已被更改,因为static_path
和static_folder
太容易混淆。