📜  未找到“ckeditor_upload”的反向. 'ckeditor_upload' 不是有效的视图函数或模式名称. - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:17.848000             🧑  作者: Mango

代码示例1
I found the problem. I SHOULD INCLUDE URLS IN MAIN urls.py IN THE PROJECT
NOT IN ANOTHER URLS EXISTS IN INCLUDED APPS

Like this --> 
urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('paintshop.urls')),
    path('ckeditor/', include('ckeditor_uploader.urls')), <-- here it is.
]