05 2018 档案
摘要:let arr = ['apple', 'banana', 'orange', 'tomato']; //循环内容 for(let val of arr) { console.log(val); } //循环索引 for(let index of arr.keys()) { consol...
阅读全文
摘要://传值 //1、 module.exports.name = "aaa"; //2、 exports.name = "bbb"; //3、可以多个传值 module.exports= { name:"zhangsan" } //另一个js接收传值 let comml = re...
阅读全文
摘要:create trigger user_Delete//创建一个名为user_Delete的触发器 on User //针对于User表 for Delete //执行删除操作 as //执行完后要干的事情 Select* from User //查询user表...
阅读全文