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
Using DMVL BORON RC7.
Call to service looks like https://localhost:8081/service/query?firstname=AAA&lastname=BBB
In the procedure of the controller
lNames := aContext.Request.ParamNames; for I := 0 to length(lNames) - 1 do begin lres := lres + ',' + lNames[i]; end;
I get 4 items array. firstname,lastname,firstname,lastname
I think it's incorrect.
The text was updated successfully, but these errors were encountered:
Yes, I think so. We'll investigate.
Sorry, something went wrong.
https://github.com/danieleteti/delphimvcframework/issues/388
516101e
danieleteti
No branches or pull requests
Using DMVL BORON RC7.
Call to service looks like https://localhost:8081/service/query?firstname=AAA&lastname=BBB
In the procedure of the controller
lNames := aContext.Request.ParamNames;
for I := 0 to length(lNames) - 1 do
begin
lres := lres + ',' + lNames[i];
end;
I get 4 items array.
firstname,lastname,firstname,lastname
I think it's incorrect.
The text was updated successfully, but these errors were encountered: