Posts by Fernando Nunes • 56 points
6 posts
-
0
votes1
answer39
viewsA: I am having a problem loading a Multer image on the server, the file loads to the path but not to the database
It is probably because you need the data and the file at the same time and in the server Parsing may take a while. Try using any method instead of single in multer.
-
0
votes2
answers1127
viewsA: Regex only at first occurrence
If your intention is to remove one or more spaces before a parenthesis you can do so: s serves to capture spaces, tabs, line breaks, etc. The * immediately after means that this space may occur…
-
0
votes2
answers88
viewsA: How to make radio effect in div
First you need to relate the Divs and for that I recommend a date attribute. So it fulfills its role and you don’t mix the control of the action with your class responsible for the format. The group…
-
2
votes3
answers836
viewsA: Show button according to php parameter condition
First take the parameter and already check if it was set. This is because the user (intentionally or unintentionally) can remove the parameter and this can trigger an error or cause inappropriate…
-
0
votes3
answers145
viewsA: Avoid editing in the field
An input with the "disabled" property is not sent together with the other fields when the form is sent. If your goal is to prevent the user from interacting with the field it is best to use the…
-
2
votes1
answer415
viewsA: Capture the hours in the fullCalendar library
Hello, all right? First of all the 'dayClick' event is triggered when a calendar date is clicked and not a calendar event. Another thing I realized is that the method parameters are quite different…