已采纳回答 / 慕侠1003787
请在demoAplication中的注解@SpringBootAplication后暂时加入(exclude={DataSourceAutoConfigeration.class,HibernateJpaConfiguration.class})。排除自动配置。到项目后期可以去掉该eⅹclude。
2018-02-23
已采纳回答 / 翔仔
同学好,是characterEncoding=utf8而不是characterEncoding=urf8没有urf8的字符集编码而只有utf8的编码,请仔细与视频比对。。。
2018-02-22
学习了这个教程的所有章节,写了篇博客大概总结了一下。博客地址: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