问题
Server side shows that the PATCH method is called and adds a null at the end of the array, instead of a new Item array with the Name and Price taken from user input.
PATCH method in the service component:
patchAdd(menu: MenuModel | number, itemToAdd: ItemClass): Observable<any> {
const id = typeof menu === 'number' ? menu: menu.id;
const url = `${this.menusUrl}/add/${id}`;
return this.http.patch(url, itemToAdd, httpOptions).pipe ()
}
patchItAdd function which implements the patchAdd method and takes data from html: Note that there are a couple of comments, from my unsuccessful tries.
patchItAdd(name: string, price: number){
name = name.trim();
if (!name) {return;}
const id = +this.route.snapshot.paramMap.get('id');
this.menuService.patchAdd(id, this.item)
//With this ^^ , the value is null, but new element is added to the array. Cannot read property push of undefined. PATCH is triggered on the backend.
// this.menuService.patchAdd(id, {name, price} as ItemClass) ----- Three errors, nothing happens
.subscribe(item => {
this.items.push(item);
});}
HTML label which is supposed to collect user input and pass data to the function:
<label class="forma">
Name of the item:
<input #itemName placeholder="What's the name of the item?" onfocus="this.placeholder =''" onblur="this.placeholder = 'What\'s the name of the item?'"/><br><br>
Item's price:
<input #itemPrice placeholder="What's the price?"onfocus="this.placeholder =''" onblur="this.placeholder = 'What\'s the price?'"/><br><br>
<span class="addnewbuttontext"><button class="addnewitembutton" (click) = "patchItAdd(itemName.value, itemPrice.value)">Add</button></span>
</label><br>
PATCH method in the backend (Dropwizard):
@PATCH
@Path("/add/{menuId}")
public void addMenuItem(
@PathParam("menuId") final int menuId,
final Item item) {
final java.util.List<Item> items = this.menuRepository.get(menuId).getItems();
items.add(item);
}
Only a null is added to the array on the backend after clicking the "ADD" button and calling the patchItAdd function. Obviously, no data is displayed on the front-end neither because of that. What am I doing wrong, or at least how should I approach the PATCH method on the front-end, with Angular 7?
回答1:
I'll try to address a couple of points, even if I don't have a complete understanding of the problem.
Why are putting a +
there? It will transform the variable in its numeric representation, is that what you want? The get()
call return value is string | null
const id = +this.route.snapshot.paramMap.get('id');
Here you're calling menuService.patchAdd
with this.item
, but I suppose you want to create a new Item
instance using the input values name
and price
.
// Angular
(click) = patchItAdd(itemName.value, itemPrice.value)
// Java
patchItAdd(name: string, price: number){
...
this.menuService.patchAdd(id, this.item)
Are my assumptions correct?
Another issue I see is that you're passing the id
, which should be string
(or number
in your case, since you transform it with the +
) to patchAdd
const id = +this.route.snapshot.paramMap.get('id');
this.menuService.patchAdd(id, this.item)
The patchAdd
function expect a MenuModel
, which is a complex object.
How's that? Are you sure this is what you want?
Let patchItAdd
accept the menu.id
value
(click) = "patchItAdd(menu.id, itemName.value, itemPrice.value)"
Now update the method
// Now this method accept the MenuModel#id property
patchItAdd(menuId: number, name: string, price: number){
if (!name) {
return;
}
const trimmedName = name.trim();
// Construct a new ItemClass instance.
// You need to take care by yourself of the "person" property and the "quantity" property
const newItem = new ItemClass("", trimmedName, 0, price)
this.menuService.patchAdd(menuId, newItem).subscribe(item => {
this.items.push(item);
});
}
Update also the patchAdd
method to accept the menu ID, instead of the complete MenuModel
// Now this method accepts the menu ID
patchAdd(menuId: number, itemToAdd: ItemClass): Observable<any> {
const url = `${this.menusUrl}/add/${menuId}`
return this.http.patch(url, itemToAdd, httpOptions)
}
On the back-end add a no-args constructor to Item
public Item() { }
来源:https://stackoverflow.com/questions/54738121/elements-passed-through-a-form-not-received-by-the-server-nor-displayed-on-the-f