Posts by ttlelis_12 • 41 points
8 posts
-
0
votes2
answers349
viewsQ: How to declare a javascript array that will receive a JSON array
Given the interface: export interface Pergunta { id: number titulo: string opcoes:[] } I want the options array to receive its options array: { "id": "1", "titulo": "Qual o seu comportamento em…
-
0
votes0
answers101
viewsQ: Return only one object at a time from http get JSON
As I do instead of came the array of all questions, I came one question at a time in my form: Given my service: import { Injectable } from '@angular/core'; import { Pergunta } from…
angularasked ttlelis_12 41 -
1
votes1
answer560
viewsQ: Property 'includes' is Missing in type 'Subscription'
I am wanting to map the list of questions and throw them in the questions property of my JSON object, but ai at the prompt gives this error: "ERROR in…
-
0
votes1
answer40
viewsQ: Check the input and then click the button
As I do only if the input is marked is that one can click on "ok,". <div class="container"> <button type="button" class="btn btn-info" (click)="openModal(template)">Create template…
-
2
votes1
answer1400
viewsQ: Carousel bootstrap 4 only in mobile mode
Given the image below that represents desktop mode, I would like to know how to turn a Carousel only in mobile mode. !--- Team -----> <div id="team" class="team"> <div…
-
0
votes0
answers106
viewsQ: Uncaught Referenceerror: Popper is not defined
How to solve the Popper problem in bootstrap 4.0 Uncaught ReferenceError: Popper is not defined I installed the Popper via npm ai gave this error,but putting it via cdn, gives ok.…
-
0
votes1
answer1676
viewsQ: Error: EPERM: Operation not permitted, Rename
I tried to run the Ionic run android and I have the following error: I have already released all access permissions with the user.…
-
0
votes1
answer120
viewsQ: Instantiating an object of one class within the constructor of another class
[SOLVED]How do I prompt the Mars object within the Rover class? For, is returning me the following error: "Mars is not defined" class Rover{ constructor(orderedX,orderedY,orientation,toMove){…