Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我调用url_for('index')它时,它会生成'/',但有时我希望它生成'domain.tld/'。我在文档中找不到我要指定的地方。我只需要做'domain.tld/%s' % url_for('index')吗?
url_for('index')
'/'
'domain.tld/'
'domain.tld/%s' % url_for('index')
url_for接受一个_external关键字参数,该参数将返回一个绝对(而不是相对)URL。我相信您需要为SERVER_NAME您的根域设置一个配置密钥以使其正常工作。
url_for
_external
SERVER_NAME