将String类型转换为Class类型

时间:2017-08-27 09:59:29

标签: angular typescript

在Java中我们使用这样的东西:

Class<?> classType = Class.forName(className);

我们如何通过Angular实现相同的目标?

1 个答案:

答案 0 :(得分:0)

如果它只是对象,你可以像这样转换

public function getAlbums()
{
   return DB::table('albums')
        ->join('photos', 'albums.id', '=', 'photos.album_id')
        ->select('photos.title', 'albums.title AS album_title', 'albums.slug AS album_slug')
        ->first()

}