Posts by Any Karolyne Galdino • 581 points
15 posts
-
1
votes2
answers1295
viewsQ: What is the difference between prop and Emit in Vue.js?
I know that prop is from parent component to son and Emit is from son to father. But I would like an example of the use of both so I can better understand the concept!
-
0
votes3
answers295
viewsA: What do I need to know in order to use React as my front-end library?
1 - The React can be used in any type of application, of course if it is for a static page, for example, there is not much need to use it, you can use jquery for this. I advise using tools like…
reactanswered Any Karolyne Galdino 581 -
3
votes1
answer2560
viewsQ: How to make several requests in parallel in Xios?
I have two urls to request: https://api.tuuris/cities and https://api.tuuris/expenses I would like to request both in parallel, currently I have done separately as in the code below: axios…
-
7
votes1
answer2560
viewsA: How to make several requests in parallel in Xios?
Just provide an array for the method axios.all. Then use the method axios.spread, that converts an array to multiple arguments. $npm install axios axios.all([ axios.get('https://api.tuuris/cities'),…
-
2
votes1
answer1682
viewsQ: Error 404 Not Found (Nginx)
I have a blog and for a few days it started to give the following error in some pages. 404 Not Found nginx/1.6.2 (Ubuntu) The error log is returning: 2016/02/02 10:44:12 [error] 612#0: *553172…
-
9
votes1
answer6414
viewsQ: How to put a link to download the app when the user enters my site by mobile
Well, I have a website and the app for IOS and Android. And I wanted every time the user entered through the smartphone he had the option to download the application, and already recognize which…
-
1
votes0
answers122
viewsQ: Data is not inserted from android to mysql using Volley
I asked this question from link and the problem I was having was solved. But I still can’t enter data into the database. Connection.php <?php $mysql_hostname = "localhost"; $mysql_user = "root";…
-
4
votes1
answer341
viewsQ: Error inserting Mysql PHP data using Android Volley lib
I am developing an application that will have to send data to a server. My php source code is this: Connection.php <?php $mysql_hostname = "localhost"; $mysql_user = "root"; $mysql_password = "";…
-
3
votes2
answers4054
viewsQ: Error message (Error:Execution failed for task ':app:processDebugManifest')
When I try to emulate the application I’m developing the following error appears. Error:Execution failed for task ':app:processDebugManifest'. Manifest Merger failed : uses-sdk:minSdkVersion 3…
-
3
votes1
answer3262
viewsQ: apache server does not execute. php files
I just installed Apache and PHP on my linux, and All my files . php are showing up this following log error: [Sat Mar 07 12:10:48 2015] [error] [client ::1] PHP Warning: Unknown: failed to open…
-
1
votes1
answer836
viewsQ: Registration of users in Wordpress with custom form
I have a user registration form inside my shortcode. Complete code <?php $user_login_RU = $_POST['username_RU']; $user_email_RU= $_POST['email_RU']; if(isset($user_login_RU, $user_email_RU)){…
-
1
votes1
answer186
viewsQ: update_post_meta/add_post_meta de Inputs dinamicos
I have the following problem, I have a shortcode that is a form, and inside this form have inputs that were created dynamically by the programmer himself through a function, but I have no idea how I…
-
4
votes2
answers1461
viewsA: list of a php survey
The solution is this: 1-PHP code: <?php include ("cabecalho.php"); $result = getuserById($_GET['idusuario']); ?> <br /><br /><br /><br /> <?php while($row =…
-
3
votes2
answers1461
viewsQ: list of a php survey
I have a questionnaire and need to pass a list with the question and the answer value, created a question table and a response table in my database, but I’m not able to pass the answer value in this…
-
4
votes1
answer351
viewsQ: Import phonegap/Cordova file in eclipse
At the time I will import file I created from phonegap/Cordova in eclipse does not appear anything. file>new>project ae i selecionei Android Project from Existing Code, I look for the folder…