我有一个非常简单的设置。但是我无法在其中使用Kodein
的片段中执行任何联网。
该片段会夸大并处理所有交互,但是由于某种原因缺少网络层的依赖关系,因为每次我按下验证此LoginFragmnet上的用户名/密码的按钮时,都会收到NotFoundException: No binding found for bind<String>() with ?<Fragment>()
。
我不理解此错误,因为我的Fragment
类的args /构造函数中没有任何String
?甚至依赖于String
。
我的应用程序类别:
...
override val kodein = Kodein.lazy {
import(androidXModule(this@MyApplication))
bind() from singleton { MyLoginApi(instance(), instance()) }
bind<LoginDataSource>() with singleton { LoginService(instance()) }
bind<LoginRepository>() with singleton { LoginRepositoryImpl(instance()) }
}
...
我的API
interface MyLoginApi {
@POST("Account/Login")
@FormUrlEncoded
fun login(
@Field("username") username: String,
@Field("password") password: String,
@Field("sessionType") sessionType: String
): Call<BaseApiResponse<Login>>
@GET("Account/Logout")
fun logout(
@Query("token") token: String
): Call<BaseApiResponse<Any>>
companion object {
operator fun invoke(
baseUrl: String,
cache: Cache
): MyLoginApi {
val okHttpClient = OkHttpClient.Builder()
.cache(cache)
.readTimeout(60, TimeUnit.SECONDS)
.connectTimeout(60, TimeUnit.SECONDS)
.build()
return Retrofit.Builder()
.client(okHttpClient)
.baseUrl(baseUrl)
.addConverterFactory(JacksonConverterFactory.create())
.build()
.create(MyLoginApi::class.java)
}
}
}
LoginService(数据源)
class LoginService(private val api: MyLoginApi) : LoginDataSource {
private val bus = EventBus.getDefault()
init {
bus.register(this)
}
override fun requestLogin(username: String, password: String) {
val call = api.login(username, password, "mobile")
call.enqueue { result ->
when (result) {
is Result.Success -> {
result.response.body()?.let {
bus.post(LoginResponse(it, username))
} ?: bus.post(LoginResponse(IOException("System Error!")))
}
is Result.Failure -> {
bus.post(LoginResponse(IOException(result.error)))
}
}
}
}
抽象片段类:
abstract class InjectionFragment : Fragment(), KodeinAware {
final override val kodeinContext = kcontext<Fragment>(this)
final override val kodein: Kodein by kodein()
final override val kodeinTrigger: KodeinTrigger?
get() = if (BuildConfig.DEBUG) KodeinTrigger() else super.kodeinTrigger
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
kodeinTrigger?.trigger()
}
}
我知道这种情况非常琐碎,但是在集成到项目的其余部分之前,我试图以此作为测试。显示Fragment
,但是由于某种原因,一旦我尝试执行数据请求,它就会崩溃并显示错误消息:
org.kodein.di.Kodein$NotFoundException: No binding found for bind<String>() with ?<Fragment>().? { ? }
module androidModule {
bind<String>(tag = "packageResourcePath") with contexted<Context>().provider { String }
bind<String>(tag = "packageCodePath") with contexted<Context>().provider { String }
bind<String>(tag = "packageName") with contexted<Context>().provider { String }
}
更新:
当单步执行我的Fragment时,调试器会说Repository
是“尚未初始化惰性值。”
答案 0 :(得分:2)
在绑定使用 String 的类的类之前,应在 kodein.lazy 初始化内将 String “类”与其自身的实例绑定。 em>
override val kodein = Kodein.lazy {
import(androidXModule(this@MyApplication))
bind() from singleton {String()} // ---> Add THIS line
bind() from singleton { MyLoginApi(instance(), instance()) }
bind<LoginDataSource>() with singleton { LoginService(instance()) }
bind<LoginRepository>() with singleton { LoginRepositoryImpl(instance()) }
}
...
之所以可以这样做,是因为在这种情况下,类 String 的构造函数是公共的,但不要将其用作最终解决方案,因为对于其他数据类型(如 Integer < / em>,因为其构造函数是私有的。
真正的问题可能在于绑定
bind() from singleton { MyLoginApi(instance(), instance()) }
MyLoginApi 内的实例是字符串的实例,由于您没有 MyLoginApi 接口的实现,因此 Kodein 库将直接尝试查找那些实例的定义位置。所以最好创建MyLoginApiImpl 然后替换为:
bind() from singleton { MyLoginApi(instance(), instance()) }
使用
bind<MyLoginApi>() with singleton { MyLoginApiImpl(instance())}