學習了這個教程的所有章節(jié),寫了篇博客大概總結了一下。博客地址:http://blog.csdn.net/codejas/article/details/79341919, 想要參考源碼的小伙伴可以前往:https://github.com/coderjas/springboot-study,希望小伙伴能夠多多支持。
2018-02-21
學習了這個教程的所有章節(jié),寫了篇博客大概總結了一下。博客地址: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
第103行也有問題,表單沒有areaId值,這樣 formData.areaId=that.data.areaId行不通吧
2018-02-20
編輯信息,跳轉傳值設置錯誤,應該先進行非空判斷,再給頁面復制,第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
//列出區(qū)域列表
List<Area> queryArea();
//根據Id列出具體區(qū)域
Area queryAreaById(int areaId);
//插入區(qū)域信息
int insertArea(Area area);
//更新區(qū)域信息
int updateArea(Area area);
//刪除區(qū)域信息
int deleteArea(int areaId);
List<Area> queryArea();
//根據Id列出具體區(qū)域
Area queryAreaById(int areaId);
//插入區(qū)域信息
int insertArea(Area area);
//更新區(qū)域信息
int updateArea(Area area);
//刪除區(qū)域信息
int deleteArea(int areaId);
2018-02-19