GPS座標が事前に入力されたフォームがあり、データベースを検索しようとしています。
<form>
<mat-toolbar color="primary">
<mat-toolbar-row style="justify-content: center;" id="test"> Yonder </mat-toolbar-row>
<br>
<mat-toolbar-row style="justify-content: center;"> <input id="geoSearch" type="text" value="{{coords}}"> </mat-toolbar-row>
<mat-toolbar-row style="justify-content: center;"> <button type="submit" class="subMitButton" id="location-button" mat-raised-button onclick="window.location.reload();" color="accent"> Locate </button> </mat-toolbar-row>
</mat-toolbar>
<br>
</form>
そして私のバックエンドコード
app.get('/api/animals',(req, res, next) => {
Animal.find({})
.then(documents => {
res.status(200).json({
message: 'success',
animals: documents
});
});
検索クエリで使用するフォームからデータを送信するにはどうすればよいですか?
ありがとう!