摘要: 取消外键约束 set @@foreign_key_check=0 describe information_schema.key_column_usage; 查看表上的索引和foreign key select * from information_schema.key_column_usage w 阅读全文
posted @ 2020-12-22 11:45 ascertain 阅读(605) 评论(0) 推荐(0)
摘要: // const arr=[1,2,5] // arr.push(9,88) // console.log(arr) // const [x,y,...z]=arr; // console.log(x,z) const b=[11,22,33] // let [x,y,z]=b; // const 阅读全文
posted @ 2020-12-22 01:35 ascertain 阅读(495) 评论(0) 推荐(0)
摘要: class Serialization { constructor() { console.log('Serialization constructor~~~~~~~'); if (typeof (this.serialize) != 'function') { throw new Referenc 阅读全文
posted @ 2020-12-22 01:02 ascertain 阅读(353) 评论(0) 推荐(0)