我需要在网址上调用update_feed(( -localhost:8000/feeds/google_merchand.py/
.update_feed()
生成文件并将其保存在目录中。
有一个函数get_feed_file_url()
:
def get_feed_file_url():
return default_storage.url(FILE_PATH)
,并在localhost:8000/feeds/google/
上调用,我试图向该函数添加update_feed()
。问题是这个函数似乎不是每次都调用。在 urls.py 我找到了这一行:
urlpatterns = [
url(r'google/$', RedirectView.as_view(
get_redirect_url=get_feed_file_url, permanent=True), name='google-feed')]
并且RedirectView
将我直接重定向到生成的文件,但它有时会调用并且不会调用get_feed_file_url
。get_feed_file_url
第一次被调用几次,但几次后它停止调用get_feed_file_url
。
看起来,浏览器缓存了网址。您所要做的就是清除浏览器上的浏览历史记录。