Posts by Francis Moura • 39 points
4 posts
-
1
votes1
answer122
viewsQ: How to pass ng-repeat {{$index}} as a mixin parameter? (Angularjs)
I am working with Aquivos . jade and using ng-repeat from Angularjs 1.5.8. I cannot pass a {{$index}} as a parameter in a mixin. This parameter is a string that defines an ng-model within the mixin.…
-
0
votes4
answers4310
viewsA: Enter key do not give Submit
Use event.preventDefault(); This will prevent the default event from occurring. The use of return false within a jQuery event handler is effectively the same as calling event.preventDefault().…
-
0
votes3
answers1495
viewsA: How to form in stages?
Use javascript! The idea is how Pope Charlie responded in the comment of his question. I thought of the following proposal: Step1 - As soon as the imput "Submit/next" is triggered,…
-
2
votes1
answer129
viewsQ: Recover parameters with $_GET and $_POST in the same php file, is that correct?
I make this request: app js.: fetch(URL + ?controller=UserController&action=insert, { method: 'POST', body: formData }) fetch php.: $controllerName = $_GET['controller']; $actionName =…