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
What's the new way to do that now? Thanks for any help.
Regards, Ph.
The text was updated successfully, but these errors were encountered:
Using :sift-variables declaration instead.
Samples:
(restas:define-route topic ("thread/:topic-id") (:sift-variables (topic-id #'parser-integer)) ...)
or
(restas:define-route myroute (":val1/:val2") (:sift-variables (val1 'integer :min-value 1 :max-value 100) (val2 'data-sfit:email :message "Doesn't look like a valid email.")) ..)
See https://github.com/archimag/data-sift/blob/master/src/sift.lisp for detail. The current documentation is outdated.
Sorry, something went wrong.
Thanks, but I can't make it work.
(define-route hello ("") (format nil "Hello ~a, aged ~a!" "Liz" 40))
works, whilst:
(define-route hello (":name/:age") (:sift-variables (name 'string) (age 'integer)) (format nil "Hello ~a, aged ~a!" name age))
does not work. I have tried "(restas:debug-mode-on)", but no messages are printed..
Any suggestion? I am using the latest RESTAS and DATA-SIFT, as downloaded by Quicklisp.
Thanks for your attention.
No branches or pull requests
What's the new way to do that now?
Thanks for any help.
Regards,
Ph.
The text was updated successfully, but these errors were encountered: