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
How do you write a for whose data is from a function?
for
Template is
"""<li fs-for="item in (f data 'names')">{{{item}}}</li>"""
Error is
Compilation errors found: Cannot extract property after "." symbol from "(f",
The text was updated successfully, but these errors were encountered:
Hi @rkosafo,
in these cases I write functions calling rather:
"""<li fs-for="item in f(data, 'names')">{{{item}}}</li>"""
Does it work for you like this?
Sorry, something went wrong.
Yeah. It does. Removing the brackets also seem to do the trick. Thanks.
No branches or pull requests
How do you write a
for
whose data is from a function?Template is
Error is
The text was updated successfully, but these errors were encountered: