Node.js写接口连接MySQL数据库

1.新建app.js粘贴以下代码

2.npm init 初始化
3.npm i 安装依赖

4.npm i mysql

5.npm i express

6. node app.js 启动接口

const express = require('express')
const mysql = require('mysql')
const bodyParser = require('body-parser')
const app = express()
const port = 3006
const jsonParser = bodyParser.json()
const urlencodedParser = bodyParser.urlencoded({ extended: false })
app.use(urlencodedParser)
app.use(jsonParser)// 创建数据库链接
const connection = mysql.createConnection({host: 'localhost',user: 'root',password: 'root',database: 'mall'
})connection.connect()//设置跨域访问
app.all('*', function (req, res, next) {res.header("Access-Control-Allow-Origin", "*");res.header("Access-Control-Allow-Methods", "GET,HEAD,OPTIONS,POST,PUT,DELETE");res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");next();
});//好物秒杀电梯导航
app.get('/elevator', (req, res) => {connection.query(`select * from index_all limit 0,168;`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 加入购物车
app.post('/collect', (req, res) => {const user_id = req.body.userIdconst id = req.body.idconst count = req.body.countconnection.query(`insert into t_collections (user_id, commodity_id,count) values (${user_id},${id},${count});`, function (err, rows, fields) {res.send({status: 200})});
})// 更新购物车数量
app.get('/updataNum', (req, res) => {const userId = req.query.userIdconst commodity_id = req.query.commodity_idconnection.query(`SELECT * FROM t_collections, index_all where t_collections.commodity_id = index_all.id and user_id = ${userId} and commodity_id = ${commodity_id}`, function (err, rows, fields) {if (rows.length != 0) {res.send({status: 200})} else {res.send({status: 666})}})
})// 我的购物车
app.get('/car', (req, res) => {const id = req.query.idconnection.query(`SELECT * FROM t_collections,index_all where t_collections.commodity_id=index_all.id and user_id=${id}`, function (err, rows, fields) {console.log(rows)res.send({data: rows})})
})// 查询注册的手机号
app.get("/seePhone", (req, res) => {const telnumber = req.query.telnumberconnection.query(`SELECT * FROM t_users where telnumber=${telnumber};`, function (err, rows, fields) {console.log(rows)if (rows.length == 0) {res.send({status: 200})} else {res.send({status: 666})}})
})// 查询购物车
app.get("/seeCar", (req, res) => {const user_id = req.query.user_idconst commodity_id = req.query.commodity_idconsole.log(777, user_id, commodity_id)// const count = req.query.countconnection.query(`SELECT count FROM t_collections where t_collections.commodity_id=${commodity_id} and user_id=${user_id};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 修改购物车
app.put("/reviseCar", (req, res) => {const user_id = req.body.user_idconst commodity_id = req.body.commodity_idconst count = req.body.countconnection.query(`update t_collections set count=${count} where commodity_id=${commodity_id} and user_id=${user_id};`, function (err, rows, fields) {res.send({status: 200})})
})// 添加购物车
app.get("/addCart", (req, res) => {const user_id = req.query.user_idconst commodity_id = req.query.commodity_idconst count = req.query.countconnection.query(`insert into t_collections (commodity_id,user_id,count) values (${commodity_id}, ${user_id},${count});`, function (err, rows, fields) {res.send({status: 200})})
})// 购物车 增加/删减 商品数量
app.put("/changeMount", (req, res) => {const user_id = req.body.user_idconst commodity_id = req.body.commodity_idconst count = req.body.countconnection.query(`update t_collections set count=${count} where commodity_id=${commodity_id} and user_id=${user_id};`, function (err, rows, fields) {res.send({status: 200})})
})//删除商品
app.delete('/del', (req, res) => {const user_id = req.query.user_idconst commodity_id = req.query.commodity_idconnection.query(`delete from t_collections where user_id=${user_id} and commodity_id=${commodity_id};`, function (err, rows, fields) {res.send({status: 200})})
})//首页底部数据
app.get('/index', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_index limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})//ole大牌精选数据
app.get('/olee', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_ole limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 所有数据接口
app.get('/all', (req, res) => {connection.query('select * from index_all', function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 模糊搜索
app.get('/search', (req, res) => {const mount = req.query.limitconst page = req.query.pageconst txt = req.query.keywordconnection.query(`select * from index_all  where title like "%${txt}%" limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 模糊搜索的所有商品
app.get('/allsearchh', (req, res) => {const txt = req.query.keywordconnection.query(`select * from index_all where title like "%${txt}%";`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})//登录接口
app.get('/login', (req, res) => {const admin = req.query.adminconst psw = req.query.pswconnection.query(`select * from t_users where telnumber='${admin}' and password='${psw}';`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})//注册接口
app.post('/register', (req, res) => {console.log(req.body.telnumber)const telnumber = req.body.telnumberconst psw = req.body.passwordconnection.query(`insert into t_users (password,telnumber) values ('${psw}','${telnumber}');`, function (err, rows, fields) {res.send({status: 200})})
})// 更多接口 
app.get('/more', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_more limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 百货接口 
app.get('/store', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_store limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 电器接口 
app.get('/appliances', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_appliances limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})//男装接口 
app.get('/man', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_man limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 母婴接口 
app.get('/baby', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_baby limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 箱包接口 
app.get('/bag', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_bag limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 美妆接口 
app.get('/makeups', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_makeups limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 运动接口  
app.get('/sports', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_sports limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 女装接口 
app.get('/woman', (req, res) => {const mount = req.query.limitconst page = req.query.pageconnection.query(`select * from index_woman limit ${(page - 1) * mount},${mount};`, function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 大牌精选接口
app.get('/good', (req, res) => {connection.query('select * from index_good', function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 好物秒杀接口
app.get('/appliances', (req, res) => {connection.query('select * from index_appliances', function (err, rows, fields) {res.send({status: 200,data: rows})})
})//疯狂折扣接口
app.get('/appliances', (req, res) => {connection.query('select * from index_appliances', function (err, rows, fields) {res.send({status: 200,data: rows})})
})//推荐接口
app.get('/appliances', (req, res) => {connection.query('select * from index_appliances', function (err, rows, fields) {res.send({status: 200,data: rows})})
})// 疯狂接口1~6
app.get('/crazy1', (req, res) => {connection.query('select * from crazy1', function (err, rows, fields) {res.send({status: 200,data: rows})})
})
app.get('/crazy2', (req, res) => {connection.query('select * from crazy2', function (err, rows, fields) {res.send({status: 200,data: rows})})
})
app.get('/crazy3', (req, res) => {connection.query('select * from crazy3', function (err, rows, fields) {res.send({status: 200,data: rows})})
})
app.get('/crazy4', (req, res) => {connection.query('select * from crazy4', function (err, rows, fields) {res.send({status: 200,data: rows})})
})
app.get('/crazy5', (req, res) => {connection.query('select * from crazy5', function (err, rows, fields) {res.send({status: 200,data: rows})})
})
app.get('/crazy6', (req, res) => {connection.query('select * from crazy6', function (err, rows, fields) {res.send({status: 200,data: rows})})
})app.listen(port, () => {console.log(`Example app listening on port ${port}`)
})

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/12958.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringSecurity的编写流程

目录 主要流程: 具体实现: 主要流程: (特殊)1、如果你需要返回json格式字符串,那么你首先需要编写相应的处理器,如果不需要则可直接写配置类 2、编写配置类 3、编写认证授权相关的mapper…

Python进行数据分析(详细教程)

1.为什么选择Python进行数据分析? Python是一门动态的、面向对象的脚本语言,同时也是一门简约,通俗易懂的编程语言。Python入门简单,代码可读性强,一段好的Python代码,阅读起来像是在读一篇外语文章。Pyth…

保护 TDengine 查询性能——3.0 如何大幅降低乱序数据干扰?

在时序数据库(Time Series Database)场景下,乱序数据的定义为:“时间戳(timestamp)不按照递增顺序到达数据库的数据。”虽然它的定义很简单,但时序数据库需要有相应的处理逻辑来保证数据存储时的…

JavaScript进阶

一、函数 1.函数 greetWorld(); // Output: Hello, World!function greetWorld() {console.log(Hello, World!); } Another way to define a function is to use a function expression. To define a function inside an expression, we can use the function keyword. In a…

Jenkins搭建最简教程

纠结了一小会儿,到底要不要写这个,最终还是决定简单记录一下,因为Jenkins搭建实在是太简单了,虽然也有坑,但是坑主要在找稳定的版本上。 先学一个简称,LTS (Long Term Support) 属实是长见识了&#xff0c…

docker 搭建jenkins

1、拉取镜像 docker pull jenkins/jenkins:2.4162、创建文件夹 mkdir -p /home/jenkins_mount chmod 777 /home/jenkins_mount3、运行并构建容器 docker run --restartalways -d -p 10240:8080 -p 10241:50000 -v /home/jenkins_mount:/var/jenkins_home -v /etc/localtime:…

如何选择台式还是便携式多参数水质检测仪呢

选择台式还是便携式多参数水质检测仪主要取决于具体的使用需求和场景。 1.便携式多参数水质检测仪适用于需要在不同地点进行水质检测的情况,例如户外采样、实地调查等。它具有小巧轻便的特点,方便携带和操作,适合需要频繁移动或需要灵活使用的…

【LeetCode】152.乘积最大子数组

题目 给你一个整数数组 nums ,请你找出数组中乘积最大的非空连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。 测试用例的答案是一个 32-位 整数。 子数组 是数组的连续子序列。 示例 1: 输入: nums […

前端框架学习-基础前后端分离

前端知识栈 前端三要素:HTML、CSS、JS HTML 是前端的一个结构层,HTML相当于一个房子的框架,可类比于毛坯房只有一个结构。CSS 是前端的一个样式层,有了CSS的装饰,相当于房子有了装修。JS 是前端的一个行为层&#xff…

如何维护你的电脑:提升性能和延长使用寿命

如何维护你的电脑:提升性能和延长使用寿命 😇博主简介:我是一名正在攻读研究生学位的人工智能专业学生,我可以为计算机、人工智能相关本科生和研究生提供排忧解惑的服务。如果您有任何问题或困惑,欢迎随时来交流哦&…

AWVS 15.6 使用教程

目录 介绍 版本 AWVS具有以下特点和功能: 功能介绍: Dashboard功能: Targets功能: Scans功能: Vulnerabilities功能: Reports功能: Users功能: Scan Profiles功能&#x…

webpack中文文档

基本安装 首先我们创建一个目录,初始化 npm,然后 在本地安装 webpack,接着安装 webpack-cli(此工具用于在命令行中运行 webpack): mkdir webpack-demo cd webpack-demo npm init -y npm install webpack …

2023 年牛客多校第四场题解

A Bobo String Construction 题意:给定一个 01 01 01 字符串 t t t,构造一个长度为 n n n 的 01 01 01 串 s s s,使得 t t t 在 c o n c a t ( t , s , t ) {\rm concat}(t, s, t) concat(t,s,t) 中仅出现两次。多测, 1 ≤…

【数据结构】实验十二:图 查找

实验十二 图查找 一、实验目的与要求 1)掌握拓扑排序的应用; 2)掌握查找的概念和算法; 3)掌握查找的基本原理以及各种算法的实现; 4)掌握查找的应用。 二、实验内容 1. 用邻接表建立一…

WIZnet W51000S-EVB-PICO 入门教程(一)

概述 W5100S-EVB-Pico是基于树莓派RP2040和全硬件TCP/IP协议栈控制器W5100S的微控制器开发板-基本上与树莓派Pico板相同,但通过W5100S芯片增加了以太网功能。 W5100S-EVB-Pico特点 RP2040规格参数 双核Arm Cortex-M0 133MHz264KB 高速SRAM和2MB板载内存通过…

JAVA基础-多线程入门(详解)

目录 引言 一,线程概念 二,创建线程 2.1,继承Thread类,重写run方法 2.2,实现Runnable接口,重写run方法,实现Runnable接口的实现类的实例对象作为Thread构造函 数的target 2.3,通…

RCU 使用及机制源码的一些分析

》内核新视界文章汇总《 文章目录 1 介绍2 使用方法2.1 经典 RCU2.2 不可抢占RCU2.3 加速版不可抢占RCU2.4 链表操作的RCU版本2.5 slab 缓存支持RCU 3 源码与实现机制的简单分析3.1 数据结构3.2 不可抢占RCU3.3 加速版不可抢占RCU3.4 可抢占RCU3.5 报告禁止状态3.6 宽限期的开…

教雅川学缠论03-分型

原著作者将K线走势分成四中类型,这四中类型,就叫做分型,注意,分型是K线的组合(至少3个K线),如下 下面我们以2023年7月武汉控股日K示例 四个分型用图来表示的话,还是很简单的&…

ubuntu安装ros以及安装遇到问题都可以解决

用ros的时候有天手贱,本来ros用的好好的又想着安装个anaconda 玩玩,结果好了,他两不能共存,于是我的ros环境就出问题了。roscore都跑步其来,只能卸载重装了。可卸载重装又出依赖问题了: 错误: …

spring5源码篇(13)——spring mvc无xml整合tomcat与父子容器的启动

spring-framework 版本:v5.3.19 文章目录 整合步骤实现原理ServletContainerInitializer与WebApplicationInitializer父容器的启动子容器的启动 相关面试题 整合步骤 试想这么一个场景。只用 spring mvc(确切来说是spring-framework)&#x…