web
[swagger] Uncaught TypeError: Cannot read property 'withMutations' of null
'김용환'
2019. 2. 13. 20:15
swagger에서 api를 정의할 때 Uncaught TypeError: Cannot read property 'withMutations' of null 에러가 발생했다.
이 이유는 api 정의할 때 parameters의 값이 null이기 때문에 발생하는 것이다.
parameters: null,
또는
parameters: ,
=>
parameters:[]
로 하면 동작한다.