We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ABP V4 MVC EF Core
In case of multiple header parameters in a controller, the service proxy script generator fails.
public async Task ActionExampleAsync([FromHeader] string mystr1, [FromHeader] string mystr2, [FromBody] List<MinimizedList> minimizedList)
JS error: ServiceProxyScript:517 Uncaught SyntaxError: Unexpected string
Due to missing comma: headers: { 'mystr1': mystr1 'mystr2': mystr2 },
The text was updated successfully, but these errors were encountered:
Use commas to separate header objects.
67b5eac
Fix #7031
37e3924
maliming
Successfully merging a pull request may close this issue.
ABP V4
MVC
EF Core
In case of multiple header parameters in a controller, the service proxy script generator fails.
public async Task ActionExampleAsync([FromHeader] string mystr1, [FromHeader] string mystr2, [FromBody] List<MinimizedList> minimizedList)
JS error: ServiceProxyScript:517 Uncaught SyntaxError: Unexpected string
Due to missing comma:
headers: {
'mystr1': mystr1
'mystr2': mystr2
},
The text was updated successfully, but these errors were encountered: