摘要:
1.post和get方法只能传递json对象,ajax方法可以传递json对象或者json字符串 2.在后台需要{studentIds:[1,2,3],userIds:[1,2,3]}这样的数据时, 需要将数据转化为字符串:JSON.stringify(data), 拓展:JSON.parse(st 阅读全文
摘要:
浏览器缓存机制//存储缓存localStorage.thisRowData=JSON.stringify(data)// 解析本地缓存var thisRowData = JSON.parse(localStorage.thisRowData);// 清缓存localStorage.thisRowDa 阅读全文
摘要:
现象:当我配置好ngnix服务器后,能够访问到服务器,但是无法访问相应端口号下的项目 原因:从svn下载下来的项目文件结构可能有问题 解决方案:重新搭建项目文件结构 阅读全文