摘要:
前端中使用cookie: 存储:document.cookie="usrename=XSS"; function setCookie(name,value,hours){ var d = new Date(); d.setTime(d.getTime() + hours * 3600 * 1000) 阅读全文
摘要:
QS:SQL优化需要注意哪些点? 1、尽量将被查询字段写出来,尽量避免例如:select * from table_name;如果使用*,数据库需要查询数据字典才能获取表中所有字段,这样会消耗时间。 2、被排序字段,也可以加索引,例如:order by column1,column2,这样直接使用索 阅读全文