学习了这个教程的所有章节,写了篇博客大概总结了一下。博客地址:http://blog.csdn.net/codejas/article/details/79341919, 想要参考源码的小伙伴可以前往:https://github.com/coderjas/springboot-study,希望小伙伴能够多多支持。
2018-02-21
学习了这个教程的所有章节,写了篇博客大概总结了一下。博客地址:http://blog.csdn.net/codejas/article/details/79341919, 想要参考源码的小伙伴可以前往:https://github.com/coderjas/springboot-study,希望小伙伴能够多多支持。
2018-02-21
写了篇博客大概总结了一下这个Demo。博客地址:http://blog.csdn.net/codejas/article/details/79341919, 源码地址:https://github.com/coderjas/springboot-study,希望小伙伴能够支持一下。
2018-02-21
编辑信息,跳转传值设置错误,应该先进行非空判断,再给页面复制,第21-26行。
改为:
if(options.areaId==undefined){
return "";
}
that.setData({
areaId:that.data.areaId
})
..........................
改为:
if(options.areaId==undefined){
return "";
}
that.setData({
areaId:that.data.areaId
})
..........................
2018-02-20
//列出区域列表
List<Area> queryArea();
//根据Id列出具体区域
Area queryAreaById(int areaId);
//插入区域信息
int insertArea(Area area);
//更新区域信息
int updateArea(Area area);
//删除区域信息
int deleteArea(int areaId);
List<Area> queryArea();
//根据Id列出具体区域
Area queryAreaById(int areaId);
//插入区域信息
int insertArea(Area area);
//更新区域信息
int updateArea(Area area);
//删除区域信息
int deleteArea(int areaId);
2018-02-19