-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
like operator not works on return view #952
Comments
Thanks for reporting! Can you provide steps to reproduce? We often need a reproducible example, e.g. some code that allows someone else to recreate your problem by just copying and pasting it. If it involves more than a couple of different file, create a new repository on GitHub and add a link to that. |
hello sorry again
i uploaded to github and respository is
https://github.com/bashgaa/example_like_operator
…On Thursday, October 26, 2023, Matteo Collina ***@***.***> wrote:
Thanks for reporting!
Can you provide steps to reproduce? We often need a reproducible example
<https://stackoverflow.com/help/minimal-reproducible-example>, e.g. some
code that allows someone else to recreate your problem by just copying and
pasting it. If it involves more than a couple of different file, create a
new repository on GitHub and add a link to that.
—
Reply to this email directly, view it on GitHub
<#952 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKJFBLGMSL3TB4CN4Y5PYHDYBFAULAVCNFSM6AAAAAA6N4DOO6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZZGY4TGNZXGI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Any update of my project issue? Do you checked my github project? |
Your github repo was not useful. I would need to setup a postgresql server. So I stopped there. |
If i use my database to supabase then no need install postgresql server. can you check my github repo if i setup supabase? |
This is not minimal: https://github.com/bashgaa/example_like_operator/blob/main/package.json#L21-L36 We request minimal code because developers often identify the issue by replicating the code themselves. The most effective approach is to follow the "divide and conquer" strategy, where you break down the code into smaller pieces and examine them one by one until you locate the problem. I would suggest starting from this comment: #952 (comment) That example in the readme works. |
This issue can probably be closed |
my login.ejs has
and my app.js has post method
when i write "good" on input form then in terminal window console.log(result.rows);
console.log({ license_key }); result is [ { id: 28, license_key: 'good' } ]
{ license_key: 'good' } but nothing to show in console window only "Error: undefined" occured in browser console window
i think return reply.view("/login.ejs", { license_users: result.rows }); not works. Input data not pass to login.ejs code
maybe like operator not pass to template file.
The text was updated successfully, but these errors were encountered: