我是 Koin 的新人。我已经设置了所有的东西并且正在工作。但是当我尝试同时注入交互者和演示者时遇到了一些问题。那不确定是否有可能。
这是我的模块
val applicationModule = module(override = true) {
factory{VoucherImpl(get())}
factory<VoucherContract.Presenter> { (view: VoucherContract.View) -> VoucherPresenter(view, get()) }
}
这是我注入演示者的活动
private val presenter: VoucherContract.Presenter by inject { parametersOf(this)}
这是我的主持人
class VoucherPresenter (private var view: VoucherContract.View?, private var mCodeRechargeInteract : VoucherImpl) : VoucherContract.Presenter, VoucherContract.Callback, KoinComponent {
override fun create() {
view?.initView()
view?.showProgress()
mCodeRechargeInteract.run()
}
.
.
.
交互者类
class VoucherImpl(private var mCallback: VoucherContract.Callback?) : AbstractInteractor() {
.
.
.
合同
interface VoucherContract {
interface Presenter {
fun create()
fun destroy()
fun checkIfShoppingCartHaveItems()
fun addVoucherToShoppingCart(voucherProduct: Product)
fun onItemClick(product: Product)
}
interface Callback {
fun onResponseVouchers(vouchers: List<Product>?)
fun onError()
}
}
有了这段代码,我得到
No definition found for 'xxx.voucher.VoucherContract$Callback' has been found. Check your module definitions.
然后,我尝试将它放入模块中,但我不能这样做,因为我得到:类型不匹配。VoucherContract.Callback
找到必需的VoucherImpl
factory<VoucherContract.Callback> { (callBack: VoucherContract.Callback) -> VoucherImpl(callBack) }