摘要:
1、class的对象绑定 2、class的数组绑定 3、style的对象绑定 4、style的数组绑定 5、通过委托事件绑定实现 通过methods里的方法,第一个传值是event,那么通过event.target 或者 event.currentTarget来操作DOM实现类的切换,可结合jque 阅读全文
摘要:
1、vue router 的入门案例 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, 阅读全文
摘要:
1、addcslashes 2、addslashes 与 stripslashes 3、bin2hex与hex2bin函数 bin2hex:表示把ASCII码字符的字符串转成十六进制 hex2bin:是对bin2hex函数的反转 4、chunk_split chunk_split(string,le 阅读全文
摘要:
1、声明报错的方法,以及相对应的页面 //把数据库的调用方法配置到请求中 server.use((req, res, next) => { //把数据库存入req中 req.db = db; //把报错方法存入res中 res.showError = code => { switch (code) 阅读全文
摘要:
1、express 路由入门 const express = require('express'); let server = express(); server.listen(8087); //用户界面 let user_router = express.Router(); server.use( 阅读全文
摘要:
、安装依赖的组件 2、布局服务端 3、前端布局 最后显示的结果 阅读全文
摘要:
Document 请将文件拖拽到此处 阅读全文
摘要:
1、安装babel-cli npm i babel-cli -D 2、实现npm的初始化 npm init -y 3、配置package.json { "name": "test", "version": "1.0.0", "description": "", "main": "index.js", 阅读全文