我是Dependency Injection的新手,我正在使用Xamarin.Forms,Prism和Unity开发应用程序。据我所知,在使用DI时,您希望向课程提供/注入服务,这样他们就不必得到它们。导致不了解服务实现的类。
这意味着使用Constructor Injection而不是使用Container来解析服务。也见http://structuremap.github.io/quickstart。
我的设置:
[assembly: Xamarin.Forms.Dependency(typeof(Foo))]
public class Foo : IFoo
{
public IBar Bar { get; private set; }
public Foo(IBar bar)
{
Bar = bar;
}
}
[assembly: Xamarin.Forms.Dependency(typeof(Bar))]
public class Bar : IBar
{ }
现在,如果我尝试解决IFoo,则抛出异常:System.MissingMethodException: Default constructor not found for type Foo
这是怎么回事?
我还尝试向Foo添加一个空构造函数,但这导致Bar为null
并迫使我从IUnityContainer中解析它。
答案 0 :(得分:1)
粗略地说,据我所知,Xamarin表单依赖服务(它看起来像你正在使用)并没有提供构造函数注入。因此,如果您想进行基于构造函数的注入,则需要使用不同的容器服务。
如果您想使用内置的Forms服务,您的代码的以下更改应该有效..
[assembly: Xamarin.Forms.Dependency(typeof(Foo))]
public class Foo : IFoo
{
public IBar Bar { get; set; }
public Foo(IBar bar)
{
Bar = bar;
}
}
[assembly: Xamarin.Forms.Dependency(typeof(Bar))]
public class Bar : IBar
{ }
然后设置对象:
var myFoo = Xamarin.Forms.Dependency.Get<IFoo>();
myFoo.Bar = Xamarin.Forms.Dependency.Get<IBar>();
否则你可能想要研究另一个DI框架。
答案 1 :(得分:0)
感谢@snowCrabs,我了解到Xamarin.Forms不支持依赖注入。所以我决定创建一个基类来通过反射来解析依赖关系。
使用Xamarin DepedencyService的主要动机是因为我喜欢使用[assembly: Xamarin.Forms.Dependency(typeof(Foo))]
注册课程的方式。这意味着在我的App项目中,我不需要进行任何注册。我只需要添加对我的库项目的引用,DependencyService将为我注册,允许我立即解析界面以供使用。
代码:
public ServiceBase()
{
IEnumerable<PropertyInfo> dependencyProperties;
var dependencyAttribute = typeof(Microsoft.Practices.Unity.DependencyAttribute);
// DependencyService.Get<> requires a type parameter so we have to call it by using reflection
var dependencyServiceGet = typeof(DependencyService).GetRuntimeMethod("Get", new Type[] { typeof(DependencyFetchTarget) });
// Get the properties from our derrived type (accessed by using "this")
dependencyProperties = this.GetType().GetTypeInfo().DeclaredProperties;
//Check if any properties have been tagged with the DependencyAttribute
dependencyProperties = dependencyProperties.Where(x =>
{
return x.CustomAttributes.Any(y => y.AttributeType == dependencyAttribute);
});
foreach (var prop in dependencyProperties)
{
// Add the type parameter to the Get-method
var resolve = dependencyServiceGet.MakeGenericMethod(prop.PropertyType);
// Now resolve the property via reflection: DependencyService.Get<PropertyType>();
var service = resolve.Invoke(null, new object[] { DependencyFetchTarget.GlobalInstance });
if (service == null)
throw new InvalidOperationException($"Herke.Forms.Core.ServiceBase: Dependency could not be resolved, did you forget to register?{Environment.NewLine}Type: {prop.PropertyType.FullName}{Environment.NewLine}Suggested code: \"[assembly: Dependency(typeof( >ImplementatingClass< ))]\"");
// Fill property value
prop.SetValue(this, service);
}
}
[assembly: Xamarin.Forms.Dependency(typeof(Bar))]
public class Bar : IBar
{ }
[assembly: Xamarin.Forms.Dependency(typeof(Foo))]
public class Foo : ServiceBase, IFoo
{
[Microsoft.Practices.Unity.Dependency]
public IBar Bar { get; set; }
// Foo can use Bar now !
}