Posts by CJuniorJR • 47 points
3 posts
-
1
votes2
answers1094
viewsQ: Typeerror: Cannot read Property 'Concat' of Undefined - Typescript?
if (dataFindCategories && dataFindCategories.length !== 0) { let dataFindProducts: Product[]; dataFindCategories.forEach((category) => {…
-
1
votes1
answer54
viewsQ: Calling Controller method and get the function print
When I call the Controller Method to list users, instead of returning me the array it returns me the print of the function Controller code: export default userController = { Listar: () => {…
-
2
votes1
answer154
viewsQ: Web application with React making infinite requests
export default class Usuariobox extends Component{ constructor() { super(); this.state = {lista: []}; } componentDidMount(){ this.Listar(); } Listar(){…