Posts by Olavo • 21 points
3 posts
-
0
votes1
answer91
viewsA: Doubt with Ionic project generation
Using Ionic-cli commands; start, generate in Ionic 2 cannot generate . js, only . ts. Options: Use Ionic 1.x ionic start todo blank Omit argument --v2 Ionic 1 Docs Build your own workflow. The first…
-
0
votes2
answers139
viewsA: Typescript Error Ionic 2
Declare: rootPage: any; Confirm what is the data type of the attribute rootPage. As in this case you will only know which component will be running time you need to pass at build time. Typescript…
-
2
votes3
answers327
viewsA: Upload a file with parameters in Silex with Angular-File-Upload
Angular-file-upload code. Omit attribute file and add to the object data. $upload.upload({ url: url, data: { id: id, descricao: descricao, file: anexo }, }).then(function (response) {…