spring boot + mybatis 读取数据库 创建数据库 use testdb; drop table if exists t_city; create table t_city( id int primary key auto_increment, city varchar(20), state varchar(10) )engine = innodb default charset = utf8; insert into t_city values(1,"zhengzhou&quo…
在做后台管理界面的时候,几乎少不了的一个结构就是树形结构,用来做菜单导航: 那么,最希望的就是树结构的所有数据都是读取的数据库,而不是直接代码当中写死,那我们就一步一步来看: 一,建表 字段通常包括:id,text,url,pid id text url pid 1 a 0 2 b test.html 1 二,使用nodeJS连接数据库 const mysql = require('mysql'); //注入MySQL模块 const connection = mysql.createCon…