Django REST 404 отправка параметров в url
Добрый день, у меня проблемы с django/ django rest apí
Назад:
url(r'^' + baseurl + etl + eph + 'salud_folder_xls/listar/<str:accion>/', etlEPHSaludXLSListar),
url(r'^' + baseurl + etl + eph + 'salud_folder_xls/descargar/(?P<nombre_archivo>.+\\.xls)', etlEPHDescargarSaludFolderXLS),
Фронт:
const response = await axios({
url: '/etl/v1/eph/salud_folder_xls/listar/',
method: 'GET',
});
Случай 1 :
const response = await axios({ url: '/etl/v1/eph/salud_folder_xls/listar', method: 'GET', });
salud_folder_xls/listar/
output >> Return 200
Случай 2 :
const response = await axios({ url: '/etl/v1/eph/salud_folder_xls/listar/perro/', method: 'GET', });
salud_folder_xls/listar/<str:accion>/'
output >> не работает (возвращает 404)