我正在尝试实现一个移动风格的底部导航栏。为此,我使用了 mat-toolbar 并使用 css 将其固定在底部,如下所示:
组件.html:
<mat-toolbar class="toolbarNav">
<mat-icon class="material-icons color_blue" (click)="getTopArtists('long_term' , 0 , 100)">
star_border</mat-icon>
<mat-icon class="material-icons color_blue" (click)="getTopTracks('long_term' , 0 , 100)">favorite_border
</mat-icon>
<mat-icon class="material-icons color_blue" (click)="recentlyPlayed()">history</mat-icon>
</mat-toolbar>
Run Code Online (Sandbox Code Playgroud)
组件.css
.toolbarNav{
position: fixed;
bottom: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
padding: 2em;
background-color: white;
-webkit-box-shadow: 3px 3px 5px 6px #ccc; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: 3px 3px 5px 6px #ccc; /* Firefox 3.5 - 3.6 */
box-shadow: 2px 2px 4px 5px …Run Code Online (Sandbox Code Playgroud) 我开发了一个 Spring Web 应用程序,使用 mysql 作为数据库,使用 hibernate 作为 orm 工具。
然后我遇到了 GraphQL,显然根据我的谷歌搜索,我发现它用于以更简单的方式检索数据并将其保存到数据库中 [使用对象结构]。
我的问题:GraphQL 是 hibernate 的替代品吗?
我应该使用 GraphQL 而不是 hibernate(我能从中受益吗?)?