我正在編寫一個(gè)小型的 Angular 應(yīng)用程序。前端已經(jīng)構(gòu)建完畢,一些基本計(jì)算是在 Angular 中處理的。我試圖將用戶請(qǐng)求的日期存儲(chǔ)在數(shù)據(jù)庫(kù)中,然后顯示在主管視圖上。我使用 springboot 進(jìn)行服務(wù),使用 hibernate 生成表和列。任何人都可以為我指明正確的方向,告訴我應(yīng)該做什么才能繼續(xù)我的申請(qǐng)。即使是閱讀材料的鏈接也將不勝感激request.component.html<div> <!-- Header with instructions --> <div> <h2 align="center"> Please Fill out the form to Request days off <br><br> All required fields are marked with an * </h2> </div> <form #testForm="ngForm"> <!-- Start of Page Body --> <div class="card card-w-title"> <!-- Dropdown for user to select supervisor --> <div class="ui-g"> <div class="ui-g-12 ui-md-2"> <p-dropdown [options]="supervisor2" [(ngModel)]="selectedSupervisor2" name="selectedSupervisor2" placeholder="Select a Supervisor*" optionLabel="name" required></p-dropdown> </div> </div> <br><br><br><br><br> <h3 align="center">Requested Dates</h3>
1 回答

白板的微信
TA貢獻(xiàn)1883條經(jīng)驗(yàn) 獲得超3個(gè)贊
我建議您在 Spring Boot 應(yīng)用程序中創(chuàng)建一個(gè) POST 控制器,如示例所示。這會(huì)將數(shù)據(jù)保存在數(shù)據(jù)庫(kù)中。
在春季啟動(dòng)中:
@PostMapping("/users") void?addUser(@RequestBody?User?user)?{ ????userRepository.save(user); }
然后從角度應(yīng)用程序調(diào)用此端點(diǎn):
this.http.post<User>(this.usersUrl,?user);
類似地,為了在主管屏幕中顯示數(shù)據(jù),您可以使用@GetMapping并以角度調(diào)用this.http.get。
添加回答
舉報(bào)
0/150
提交
取消