会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
蹲坑码代码
博客园
首页
新随笔
新文章
联系
管理
订阅
1
2
3
4
下一页
2021年12月7日
bootstrap.02
摘要: 表单: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content
阅读全文
posted @ 2021-12-07 12:10 陶小黑
阅读(39)
评论(0)
推荐(0)
2021年12月6日
bootstrap
摘要: https://www.bootcss.com/ css框架 栅格布局: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edg
阅读全文
posted @ 2021-12-06 12:12 陶小黑
阅读(65)
评论(0)
推荐(0)
2021年12月2日
http文件、错误信息提示页面、mongodb文件、user文件的条件拘束
摘要: validate 验证 正则表达式 mongodb文件: // 引用mongoose const mongoose=require("mongoose"); // 协议 mongoose.connect("mongodb://127.0.0.1:27017/test"); // 创建模型 const
阅读全文
posted @ 2021-12-02 16:49 陶小黑
阅读(45)
评论(0)
推荐(0)
2021年11月30日
路由查询/添加/删除2(总)
摘要: app文件: //引入类 const Koa = require('koa'); const Router =require('koa-router'); const koaBody = require('koa-body'); const tagRouter =require("./routers
阅读全文
posted @ 2021-11-30 15:24 陶小黑
阅读(72)
评论(0)
推荐(0)
2021年11月29日
路由查询/添加/删除
摘要: //app.js//引入类 const Koa = require('koa'); const Router =require('koa-router'); const koaBody = require('koa-body'); const tagRouter =require("./router
阅读全文
posted @ 2021-11-29 17:43 陶小黑
阅读(149)
评论(0)
推荐(0)
2021年11月26日
koa-router学习
摘要: https://www.npmjs.com/ //引入类 const Koa = require('koa'); const Router =require('koa-router') //引入内部方法或属性 //const{方法或属性名} =require('koa'); //创建对象 const
阅读全文
posted @ 2021-11-26 12:17 陶小黑
阅读(294)
评论(0)
推荐(0)
2021年11月25日
node使用基础
摘要: 使用: // 引入对象 const Koa = require('koa'); // 引入内部方法属性 // const(方法或属性)=require('koa'); // 创建对象 const app = new Koa(); // response app.use(ctx => { ctx.bo
阅读全文
posted @ 2021-11-25 12:16 陶小黑
阅读(39)
评论(0)
推荐(0)
2021年11月24日
es6.001
摘要: ES6: es2015(es6) 、es2016(es7)、es2017(es8) 、es2018(es9) 、es2019(es10) (es6为基础,进行兼容扩展) value 、let变量声明 // 块级区域 { var value=10; let count=20; } console.lo
阅读全文
posted @ 2021-11-24 11:53 陶小黑
阅读(32)
评论(0)
推荐(0)
2021年11月23日
fetch
摘要: https://developer.mozilla.org/zh-CN/docs/Web web 开发网站 https://unpkg.com/axios/dist/axios.min.js axios代码网址 fetch('./01data.json',{}) //{里面是参数} .then(fu
阅读全文
posted @ 2021-11-23 10:35 陶小黑
阅读(95)
评论(0)
推荐(0)
2021年11月22日
ajax 基础
摘要: 基础数据格式 1) 创建 XMLHttpRequest 对象,也就是创建一个异步调用对象 2) 创建一个新的 HTTP 请求,并指定该 HTTP 请求的方法、URL 及验证信息 3) 设置响应 HTTP 请求状态变化的函数 4) 发送 HTTP 请求 5) 获取异步调用返回的数据 6) 使用 Jav
阅读全文
posted @ 2021-11-22 11:57 陶小黑
阅读(36)
评论(0)
推荐(0)
1
2
3
4
下一页
公告