I have a .net endpoint here:
public class ListContactRequest
{
public Guid userId { get; set; }
}
[Authorize]
[HttPost]
[Route("listContacts")]
public async Task<AddressBookListContacts> listContacts([FromBody]ListContactRequest req)
{
return blah blah....
}
and my react axios calls in typescript
import { Guid } from "guid-typescript";
interface IListContactRequest {
userId: Guid;
}
const ListContacts = (user: IListContactRequest) => {
console.log(user);
return axios
.post(API_URL + "/listContacts", user, {
headers: {
"Content-Type": "application/json",
},
})
.then((response) => {
return response.data;
});
};
the problem is that, when the axios method fires, it reaches the .net endpoint,however, the guid within the parameter object, is coming through as 00000000-0000-0000-0000-000000000000
when console logging the front end, the guid is appearing correctly, but when it hits the backend api, it seems to not carry over.
can someone offer some advice?
console.log(JSON.stringify(user))
shows
{"userId":{"value":"24883e12-439d-4e54-aae5-5b1d5140833e"}}
Your
Guid
is serialising to JSON as an object withvalue
property but your C# model does not match.You can use either the
Guid.prototype.toString()
orGuid.prototype.toJSON()
methods to get the correct valueSee https://github.com/snico-dev/guid-typescript#props-and-methods
Perhaps a neater option would be to make
IListContactRequest
a class instead that implements its owntoJSON()
method