老师同学们,写测试类的时候,一直报这个错误,是怎么回事呢?
Error creating bean with name 'com.ahu.xrq.demo.dao.AreaDaoTest': Unsatisfied dependency expressed through field 'areaDao';
Error creating bean with name 'com.ahu.xrq.demo.dao.AreaDaoTest': Unsatisfied dependency expressed through field 'areaDao';
2018-03-16
删除有小问题,删除第一条记录的时候,数组的数据会被全部删除
有问题代码:that.data.list.splice(e.target.dataset.index);
修改后:that.data.list.splice(e.target.dataset.index,1);
有问题代码:that.data.list.splice(e.target.dataset.index);
修改后:that.data.list.splice(e.target.dataset.index,1);
2018-03-16
最后一步插入!java.lang.reflect.InvocationTargetException 跪求
老师,就差最后一步了,单元测试的时候插入和更新都没有问题,但是在最后前后联调的时候,插入和更新都有报错,java.lang.reflect.InvocationTargetException ,service也实例化了,就是service的方法不执行!求老师告知啊
老师,就差最后一步了,单元测试的时候插入和更新都没有问题,但是在最后前后联调的时候,插入和更新都有报错,java.lang.reflect.InvocationTargetException ,service也实例化了,就是service的方法不执行!求老师告知啊
2018-03-16
Error creating bean with name 'com.ahu.xrq.demo.dao.AreaDaoTest': Unsatisfied dependency expressed through field 'areaDao'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.ahu.xrq.demo.dao.AreaDao' available:
2018-03-16
老师,问几个问题,这里您的代码里面使用事物只有在add方法里面吗?还有就是关于异常的记录,第一次用的e.getMessage,而后面用的是e.toString,请问这是为什么呢?
2018-03-14
补充一下,在wxml中给data添加数据的时候--data-areaid--如果用了大写 比如(areaId),在相应的js中就拿不到该值(前提你前后对应属性值是一样的,不然怎么都拿不到)
2018-03-14
https://gitee.com/xiangze/areadisplay/blob/master/pages/operation/operation.wxml#
2018-03-11
旧版的微信开发者工具,新建一个页面都要在app.json将页面定义进来,即 "pages/list/list"。不然显示不了吧。
2018-03-11