Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Параметр без описания этого параметра вызывает в ReDoc ошибку. #13

Open
zerobig opened this issue Nov 17, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@zerobig
Copy link
Owner

zerobig commented Nov 17, 2024

Код ниже

Функция ПолучитьОписаниеHTTPСервиса() Экспорт
	
	МассивОписанийМетодов = Swag_Описание
		.Метод("ТестовыйGET")
			.ОписаниеМетода("Получение данных из 1С")
			.ПараметрURL("Версия")
				.ЗначениеПеречисления("1.0")
				.ЗначениеПеречисления("2.0")
			.Ответ(200)
				.ОписаниеОтвета("Success")
		.Сформировать()
	;

	Возврат МассивОписанийМетодов;

КонецФункции

Функция ПолучитьОбъектыHTTPСервиса() Экспорт

	Объекты = Новый Массив;
	
	Возврат Объекты;

КонецФункции

приводит к ошибке

redoc_error

но достаточно добавить:

.ОписаниеПараметра("Версия метода")

и все работает нормально.

@zerobig zerobig added the bug Something isn't working label Nov 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant