service.BizMemberInfoService 在哪被實(shí)現(xiàn)了?
在執(zhí)行先這段代碼的時候?
func?(c?*BizMemberInfoControllers)?Get()?mvc.Result?{ ???dataList?:=?c.Service.GetAll() ???return?mvc.View{ ??????Name:?"index.html", ??????Data:?iris.Map{ ?????????"Title":????"會員信息管理", ?????????"DataList":?dataList, ??????}, ???} ??? }
c.Service?是空的,無法?代用接口,需要在把實(shí)現(xiàn)類在注入一次才可以
?