摘要:
mysql模糊查询like的用法 查询user表中姓名中有“王”字的: select * from user where name like '%王%' mysql模糊查询not like的用法 查询user表中姓名中没有“王”字的: select * from user where name no 阅读全文
摘要:
一,我们在实际开发中不想启动 MySQL 来得到json格式,而是自己写一个 json 格式时进行调用。(参考网址:https://www.jb51.net/article/107904.htm) 这里我们要借助jQuery的一个函数$.getJSON(“json文件地址”,function( da 阅读全文