在过去的两个月里,我一直在与我无法确定的非常奇怪的行为作斗争。
我的一个 django 应用程序 urls 文件看起来像这样:
urlpatterns = {
path('containers/', GetProductContainers.as_view()),
path('delete/<deleteTime>', DeleteProcessedStockTime.as_view()),
path('containers/', GetProductContainers.as_view()),
path('input/', InsertMultiProcessedStock.as_view()),
path('<str:stockT>/', ProcessedStockTimeView.as_view(), name="stockstime"),
path('', ProductListDetailsView.as_view(), name="details"),
}
如您所见,此路径path('containers/', GetProductContainers.as_view()),
在我的 urlpatterns 中是两次。这样做的原因是,一旦我删除一个,它就会返回一个空数组。我删除哪一个并不重要!如果两者都在那里,我会得到我期望的 319 条记录。我可以删除两者中的任何一个,它将返回一个空数组,但是一旦我有 2 个,它就会再次工作。
谁能想到对此的解释或我什至如何开始调试它?
我相信这是因为您将urlpatterns创建为集合而不是列表。 集合是无序类型,因此 url 模式不会以正确的顺序解析。
例:
>>> {
... path('containers/', TestView.as_view()),
... path('delete/<deleteTime>', TestView.as_view()),
... path('input/', TestView.as_view()),
... path('<str:stockT>/', TestView.as_view(), name="stockstime"),
... path('', TestView.as_view(), name="details"),
... }
{<URLPattern '<str:stockT>/' [name='stockstime']>, <URLPattern '' [name='details']>, <URLPattern 'containers/'>, <URLPattern 'delete/<deleteTime>'>, <URLPattern 'input/'>}
>>> [
... path('containers/', TestView.as_view()),
... path('delete/<deleteTime>', TestView.as_view()),
... path('input/', TestView.as_view()),
... path('<str:stockT>/', TestView.as_view(), name="stockstime"),
... path('', TestView.as_view(), name="details"),
... ]
[<URLPattern 'containers/'>, <URLPattern 'delete/<deleteTime>'>, <URLPattern 'input/'>, <URLPattern '<str:stockT>/' [name='stockstime']>, <URLPattern '' [name='details']>]