gpt4 book ai didi

java - Android 中的 MVVM 架构使用 Volley

转载 作者:行者123 更新时间:2023-11-30 05:22:29 24 4
gpt4 key购买 nike

我正在研究 MVVM,看看它是否可以帮助我完成即将进行的项目。到目前为止我所理解的是,我需要使用 ViewModel用于保存我的 UI 数据。我还需要使用 Repository 类来执行对 WebServices 的所有请求,并且我正在使用 Volley 库。

这就是我所做的:

ViewModel

public class MyViewModel extends ViewModel {

private MyRepository repository;
private MutableLiveData<MyPojo> pojo;

public MyViewModel(MyRepository repository) {
this.repository = repository;
this.pojo = new MutableLiveData<>();
}

public LiveData<MyPojo> updatePojo(){
pojo.postValue(repository.getPojo());
return pojo;
}
}

存储库类

public class MyRepository {

private Application application;
private LiveData<MyPojo> pojo;

public MyRepository(Application application) {
this.application = application;
}

public MyPojo getPojo(){
if(pojo == null){
ApiRequest apiRequest = new ApiRequest(ApiSingleton.getInstance(application).getRequestQueue(), application);
apiRequest.apiGetRequest(ApiRequest.MY_ENDPOINT, null, new ApiRequest.apiCallback() {
@Override
public void onSuccess(Context context, JSONObject jsonObject) {
pojo = ApiResponseParser.parse(jsonObject, MyPojo.class);
}

@Override
public void onError(Context context, String message) {

}
});
}
return pojo;
}

}

已指定here那一个ViewModel绝不能引用 View 、生命周期或任何可能保存对 Activity 上下文的引用的类。正如您所看到的,我必须使用上下文才能在我的 Repository 类中执行 Volley 请求,并且我的 ViewModel 有对该类的引用。

我的设计中是否遗漏了一些东西? Volley 这里不兼容吗?

最佳答案

您可以将 ApiRequest 传递给MyRepository 的构造函数

public MyRepository(ApiRequest apiRequest) {
this.apiRequest = apiRequest;
}

现在 MyRepository 没有对 Context 的引用。

并且,关于 ViewModel 直接引用 MyRepository,您可以执行 dependency inversion :

使用 getPojo() 方法创建一个接口(interface),例如 MyDataStoreMyRepository 将实现此接口(interface)。创建 MyViewModel 时,您会将 MyRepository 传递给它,但 MyViewModel 将仅引用 MyDataStore

interface MyDataStore {
... getPojo()
}

public class MyRepository implements MyDataStore {
...
}

public MyViewModel(MyDataStore dataStore) {
this.dataStore = dataStore;
this.pojo = new MutableLiveData<>();
}

关于java - Android 中的 MVVM 架构使用 Volley,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59331734/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com