var ioc = {
gatheConf : {
type : "xxx.xxx.classA<xxx.xxx.classB>",
}
}
5 回复
工厂方法
var ioc = {
gatheConf : {
type : "xxx.xxx.classA",
factory : "xxx.yyy.zzz.AFactory",
args : ["xxx.yyy.zzz.B"]
}
}
写错了. 应该是带create方法的
var ioc = {
gatheConf : {
type : "xxx.xxx.classA",
factory : "xxx.yyy.zzz.AFactory#create",
args : ["xxx.yyy.zzz.B"]
}
}
@wendal 明白
添加回复
请先登陆