
node.js
熊小露的blog
有意思的书 | 有意思的人
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
四种简单的SQL语句(增删改查))
插入语句:insert into [table] ([column],[column],[column])values(?,?,?)删除语句delete from [table]where column = ?修改语句update [table]set column = ?where column = ?查询语句1)。查询单条记录的所有字段sele...原创 2018-07-28 20:22:30 · 1180 阅读 · 0 评论 -
用node写后台接口 (后台管理系统)
第一步 先下载express- npm install express -S -引入express 创建服务器const express = require('express')const app = express()app.listen(5000, ()=>{ // 打印一下 console.log('http://127.0.0.1:5000'...原创 2018-09-04 21:39:44 · 32635 阅读 · 39 评论