1、未引入相对应的依赖包
//viewmodle
implementation "androidx.activity:activity-ktx:1.2.2"
implementation "androidx.fragment:fragment-ktx:1.3.3"
2、使用的ViewModel的构造函数可能是有参的,如果仍然使用viewModels()或activityViewModels()进行初始化,并不会报错,但是运行会Crash,提示
java.lang.RuntimeException: Cannot create an instance of class com.ecovacs.showbotdemo.fragment.QaViewModel
//举个栗子就像这个ViewModel
class QaViewModel(context:Context) : ViewModel()