Liquid syntax error: Unknown tag 'endraw'
For further actions, you may consider blocking this person and/or reporting abuse
Liquid syntax error: Unknown tag 'endraw'
For further actions, you may consider blocking this person and/or reporting abuse
Jethro Larson -
elanatframework -
Vincent Odukwe -
Programming In Blood -
Top comments (55)
Hi I'm Sory bad englih.
I installed mysql package on my react native project but I get an error like this.
The crypto package should not exist according to the error.
But it's in node_modules.
error: bundling failed: Error: Unable to resolve module
crypto
fromnode_modules/mysql/lib/Connection.js
: crypto could not be found within the project.Have you solved it ?
Hello, that's pretty weird. Have you tried running
npm install crypto
?Sorry I took long to answer, this article is pretty outdated and I've been quite busy haha
Hey Saulo, I've been trying to get app.post to work, so I can post the data from the registration form to the database, only I'm stuck understanding how it should work for react-native.
This is my app.post code:
app.post('/newUser', function(req, res, next)
{
// Creating our connection.
db.getConnection(function(err, connection)
{
});
Now I'm confused to what I should put in replace for '/newUser'. If I understand correctly this is the route from where you can grab the information from. So let's say there is a form on /newUser, than you can grab the values of those input fields and put it in the query. But in my react native app you don't have url paths, so I'm confused to how I can grab the values from my form in my Registration class to put it in my query like above. Am I missing something?
Hey, you're on the right path! If I understood correctly, you want to get values from your form and then send them to your connection.query string on the server, right?
To do that on ReactJS/React Native, all you gotta do is send a JSON object with the request configuration and your data. The JSON object with your data is called 'body'. Here's how you should do it:
If you really want to get the hang of it, I recommend you to study NodeJS (which is the server we're using). It's amazing and super useful!
Yes that's what I want! Now I understand how it should work, I only have troubles with implementing it. I put my project on GitHub: github.com/CPhilipse/httprequest
I've put that code of yours in my Registration class, because that's where the state is. Now I call this async function when I click on the register button, but then I get this error: Possible Unhandled Promise Rejection (id: 0):TypeError: Cannot read property 'name' of undefined. I've looked for it on the internet and it's likely that it's because it takes time for the values to get in the state, which is why it won't find it. But when I console.log these values in a different function which I call when I click on register, it does just find it. So I've my doubts that that's the problem. I've put my PC ip in there, so it isn't that. Since it's a promise, it has to be from that function, but what am I missing?
I created a PR there, check it out.
That's amazing! It works! I don't understand how those changes you made, calling the function differently, catch error and adding a header made it work, but thanks man! This is pretty cool! I've got one more question though, if I understand correctly this method/communication with the database will only work when the node server is started through this command: node Routes.js. Now let's say this application is going live and anyone can download this app. How is it supposed to work for those downloading it? Do I have to automatically make this command run for those people?
Also, with this code: await fetch('my_ip:3000/newUser', | Can I just leave this be? And will it still work for everyone? I guess I understand it working on localhost, but when everyone has the app, it's not localhost anymore that can work, right?
(I hope you can enlighten me on this. I'm not that familiar with the depths of networking, so excuse me if this a newbie question. Thanks in advance )
I'm also a newbie, don't worry.
If you want other people to use your app, all you gotta do is host your database and your NodeJS server somewhere.
Tip: You can host your Node server on Glitch or Heroku for free.
Then, instead of inserting your computer ip on the
fetch
function, you would insert the hosted Node server URL :)I highly recommend you to study node, and also to check out Heroku and Glitch.
Okay, that makes so much sense. I'll definitely check it out. Appreciate your help man!
Hey man, I've been trying to get a insert to work but it won't work. I got this error in the query. And know I'm stuck. Any tips?
Hi Saulo Joab, when i run this command 'node routes.js', i don't see any data in my browser ??
Hello! Does your Terminal logs any errors? If all you get in the browser is "[]" it means that the query didn't return any values.
i get error like ' Cannot read property 'query' of
undefined', it doesn't know query method when retrieving data from db
Are you sure that you installed the mysql module with:
npm install mysql
And imported it into the routes.js file with:
Also, make sure you create the connection with:
I've done it all, the same problem.
Huh. That's weird.
Try removing the comma after the database name. If that doesn't work, change mySql to lowercase (mysql). I really don't know what's wrong, maybe something with the npm installation?
Absolutely, this is really weird, I can't figure out this, i'm doing all what you say but he doesn't work, with npm i have this three packages completely.
Is your MySQL database working fine on the localhost? I really can't see the problem...
Finally,
Problem solved !!
i have added these lines :
and MySQL port of my Database:
then it's pop up another problem these: (ER_NOT_SUPPORTED_AUTH_MODE)
then it solved with just executing this command:
alter user 'root'@'localhost' identified with mysql_native_password by 'password'
inside Query file, finally all is well.
source :
stackoverflow.com/questions/449462...
That's awesome! I'm glad it worked out! Sorry I couldn't help you, that never happened to me...
No problem, thank you a lot .
I'm getting this error
module.js:549
throw err;
^
Error: Cannot find module 'express'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object. (/home/pandat/Desktop/myapp/server.js:1:79)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
Are you sure that you installed Express?
npm install express
Hi guys, i need help for this topic, i have asyncstorage username data, and i need make a sql query with sql and this username. How can i do this topic? i cant understand anything to tell this solution? who can help me?
Maybe this thread could help you: dev.to/cphilipse/comment/dckm
Hi Saulo, thank you for the solution. In my project, I access the MySQL database. I can call and run queries through the program. If you inspect the attached image, I call queries and execute them until they become become dysfunctional or not called at all.
I found a solution and increased the maximum number of connections with the
SET GLOBAL max_connections = 150;
However, it didn't affect the outcome.
How can I overcome this situation?
I also posted this question on Stack Overflow.
If you want to inspect the code,
stackoverflow.com/questions/594727...
Hey man, sorry I took so long. I've been absolutely busy haha
This post is pretty outdated, so instead of creating a lot of connections, you should create a connection pool.
This might help you: stackoverflow.com/questions/184965...
Hi, I also get this error:
$ node app.js
Go to localhost:3000/users so you can see the data.
/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/Parser.js:437
throw err; // Rethrow non-MySQL errors
^
TypeError: Cannot read property 'query' of undefined
at /home/gg/dev/sb/API/app.js:25:16
at Handshake.onConnect (/home/gg/dev/sb/API/node_modules/mysql/lib/Pool.js:58:9)
at Handshake. (/home/gg/dev/sb/API/node_modules/mysql/lib/Connection.js:526:10)
at Handshake._callback (/home/gg/dev/sb/API/node_modules/mysql/lib/Connection.js:488:16)
at Handshake.Sequence.end (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/sequences/Sequence.js:83:24)
at Handshake.ErrorPacket (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/sequences/Handshake.js:125:8)
at Protocol._parsePacket (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/Protocol.js:291:23)
at Parser._parsePacket (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/Parser.js:433:10)
at Parser.write (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/Parser.js:43:10)
at Protocol.write (/home/gg/dev/sb/API/node_modules/mysql/lib/protocol/Protocol.js:38:16)
the query method is undefined, but mysql module was installed with npm install mysql and is present
const express = require('express');
const bodyParser = require('body-parser');
const mysql = require('mysql');
const connection = mysql.createPool({
host : 'localhost',
port : 3306,
user : 'mysql user',
password : 'mysql password',
database : 'db_name'
});
// Starting our app.
const app = express();
app.use(bodyParser.json({type: 'application/json'}));
app.use(bodyParser.urlencoded({ extended: true }));
// Creating a GET route that returns data from the 'users' table.
app.get('/users', function (req, res) {
// Connecting to the database.
connection.getConnection(function (err, connection) {
});
});
// Starting our server.
app.listen(3000, () => {
console.log('Go to localhost:3000/users so you can see the data.');
});
when i go to localhost:3000/users I the get following message on my browser
This site can’t be reached localhost refused to connect.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_REFUSED
when I launch the script with node app.js the program listens to port 3000 and outputs:
Go to localhost:3000/users so you can see the data.
then listens on...
when i go to localhost:3000/users and get the connection refused message, I can THEN see the query undefined error on my terminal
I added the
app.use(bodyParser.json({type: 'application/json'}));
app.use(bodyParser.urlencoded({ extended: true }));
as proposed before in the comments but still nothing.. added
port : 3306, in the connection info and still nothing as well...
any idea?
Hey I was getting this problem too, and this is more for any other researchers later on. I was able to resolve the problem by uninstalling mysql (npm uninstall mysql), and then I used yarn (which is another packet manager, if you don't have it you'll have to do something like npm install --global yarn) and then I switched the code to require mysql2 and I was able to view the data in the browser. Using different packet managers in a project is not recommended, so you could probably use npm install mysql2, but I think the main solution here is to use the mysql2 package.
Hey! If by chance anyone finds my comment, I'm a bit new to this and needed a little help with printing my data.
When it says "All the data will be stored on the users variable," how do I use "users" to get my data? Could someone show me an example code to do that? thank you so much!!
What about storing data! Do you have any tutorial about that?
Storing data is pretty easy as well. The main difference is that you'll need to make a POST request instead of a GET request. So it would be
app.post
instead ofapp.get
.You'll also need to install body parser so you can get your requisition body (ex: the field values) with NodeJS. I'm super busy right now so I can't make a new tutorial, but I'll make one as soon as I can :)
Super curious to see how you would do this. I found this article really helpful, but expanding it to where you can store and update these things, is something I haven't figured out yet. Can't wait!
I can see my json-formatted data in "/users" but on the homepage it says "CANNOT GET /".
I am using ReactJS with Visual Studio Code.
That's because we only created the "users" route on this tutorial. Like this:
If you want to create the homepage route, you gotta add the '/' char, like this:
I am trying to fetch the data from '/users' and display it in the homepage.
You can't use
localhost
because you're running the app in your cellphone. The server is running on your computer. If you uselocahost
the app will understand that the server is running on your cellphone, which is not correct. Here's how you should do it:Some comments may only be visible to logged-in visitors. Sign in to view all comments.