조각이 있습니다.
class MyFragment : BaseFragment() {
// my StudentsViewModel instance
lateinit var viewModel: StudentsViewModel
override fun onCreateView(...){
...
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
viewModel = ViewModelProviders.of(this).get(StudentsViewModel::class.java)
updateStudentList()
}
fun updateStudentList() {
// Compiler error on 'this': Use viewLifecycleOwner as the LifecycleOwner
viewModel.students.observe(this, Observer {
//TODO: populate recycler view
})
}
}
내 조각에는에서 시작되는 StudentsViewModel 인스턴스가 onViewCreated(...)
있습니다.
에서 StudentsViewModel
, students
A는 LiveData
:
class StudentsViewModel : ViewModel() {
val students = liveData(Dispatchers.IO) {
...
}
}
돌아 가기 MyFragment
, 함수 에서 전달 된 매개 변수를 updateStudentList()
불평하는 컴파일러 오류가 발생 합니다.this
.observe(this, Observer{...})
Use viewLifecycleOwner as the LifecycleOwner
이 오류가 발생하는 이유는 무엇입니까? 그것을 제거하는 방법?
IllegalStateException: Can't access the Fragment View's LifecycleOwner when getView() is null i.e., before onCreateView() or after onDestroyView()