T
T
Taktan Stepanov2019-04-24 10:19:10
MySQL
Taktan Stepanov, 2019-04-24 10:19:10

How to implement a database management interface using VueJS?

There is a database on the MySQL server, filled with data, with related tables, etc. You need to attach a programming interface written in VueJS to the database. What binding can be used to send and receive information between these two tools?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
alex, 2019-04-24
@Taktan

The scheme is as follows: client (Vue) --> server API (your language) --> database (MySQL).
The client makes requests to the API, the API makes a request to the database, the database responds to the API, the API responds to the client. API requests can be made using ajax, for real-time data, you can use websockets

I
Ivan Tabakerka, 2019-04-24
@IvanTabakerka

The node.js package manager has a library for interacting with mysql.
https://www.npmjs.com/package/mysql
Fuck knows why you need this mysql, but I don't get into other people's business. If you want to interact, then there is something for it.
Mongodb is crap

A
Alexander Drozdov, 2019-04-24
@bagzon

Write an API in php, node.js, etc. and keep healthy)

D
Denis Bazarnov, 2019-04-24
@bazden

Do you really need to write in Vue.js? Maybe just use phpmyadmin ?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question