我在laravel中有一个模型作为字符串存储在变量中。$model = "App\Models\City"; 我想要的是$model::find(1) to fetch the City with ID of 1 但它并不像预期的那样工作。但是,当我这样做的时候City::find(1) 不使用$model变量。我能得到预期的结果。有人吗? 最佳答案 你可以在service container$model = app("App\Models\City"); $model::find(1);