第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

查詢用戶輸入,然后存儲(chǔ)在數(shù)據(jù)庫(kù)中,然后顯示在頁(yè)面上

查詢用戶輸入,然后存儲(chǔ)在數(shù)據(jù)庫(kù)中,然后顯示在頁(yè)面上

繁星淼淼 2023-11-10 15:54:03
我正在編寫一個(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。


查看完整回答
反對(duì) 回復(fù) 2023-11-10
  • 1 回答
  • 0 關(guān)注
  • 153 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)