Тёмный
Techi Share
Techi Share
Techi Share
Подписаться
Комментарии
@loyd7654
@loyd7654 Месяц назад
has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. where can i access my htaccess
@rajusah3376
@rajusah3376 2 месяца назад
Getting two warning : 1. Third-party cookie will be blocked. Learn more in the Issues tab. 2. Error with Permissions-Policy header: Unrecognized feature: 'ch-ua-form-factor'. how to fix it ?
@mrkammytv
@mrkammytv 2 месяца назад
Very nice!
@techishare9993
@techishare9993 2 месяца назад
Thanks!
@braveitor
@braveitor 3 месяца назад
Really good and useful tutorial. I'm developing right now a webapp with this features and I've already used several concepts from this video. Thanks and congrats.
@BriBru00
@BriBru00 3 месяца назад
hello , thank you for this tutorial , is there any source code available?
@danalexandermangilit7210
@danalexandermangilit7210 4 месяца назад
how can i deploy it? when i search over the internet it says that i need to make the php file accessible over the internet. can you make a tutorial for that??
@NangaRicardo
@NangaRicardo 4 месяца назад
Can i use in a project mobile with capacitor??
@mibuharisacademicchannel432
@mibuharisacademicchannel432 5 месяцев назад
Good tutorial. Providing explanations would make it better.
@imanolcirilo7853
@imanolcirilo7853 6 месяцев назад
I have an error on: this.formData['update'] = true; this.formData['studentId'] = this.studentId; from edit.page.ts, how can I resolve it?
@silvamoises8125
@silvamoises8125 5 месяцев назад
I had the same issue, I could fix it by editing the file edit.page.ts to this: import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import axios from 'axios'; import { NavController } from '@ionic/angular'; @Component({ selector: 'app-edit', templateUrl: './edit.page.html', styleUrls: ['./edit.page.scss'], }) export class EditPage implements OnInit { formData = { firstName: "", lastName: "", gender: "", age: "", email: "", update: false, studentId: 0 } constructor(private activatedRoute: ActivatedRoute, private navCtrl: NavController) { } ngOnInit() { this.activatedRoute.params.subscribe((params) => { this.formData.studentId = +params['id']; this.getStudentData(); }) } getStudentData() { axios.get(`localhost/students.php?studentId=${this.formData.studentId}`) .then( (response) => { console.log(response.data); this.formData = { firstName: response.data[0].first_name, lastName: response.data[0].last_name, gender: response.data[0].gender, age: response.data[0].age, email: response.data[0].email, studentId: this.formData.studentId, update: this.formData.update } }) .catch((error) => { console.log(error); }) } update() { console.log(this.formData); this.formData.update = true; axios.post("localhost/students.php", this.formData) .then( (response) => { if(response.data == "1") { this.navCtrl.navigateForward('/home'); } }) .catch((error) => { console.log(error); }) } }
@ImFunny99
@ImFunny99 6 месяцев назад
Thnx for tut. Why ur use in php loop to get student data? Can u use fachall and in ts componet loop data
@ImFunny99
@ImFunny99 7 месяцев назад
Very good tutorial ❤👏👍
@thomastafese9470
@thomastafese9470 8 месяцев назад
whould be good if u shared the source code
@jhonsonalimin4284
@jhonsonalimin4284 9 месяцев назад
Thanks for sharing. video is blurry can't see the text specially small writing.
@techishare9993
@techishare9993 8 месяцев назад
Thanks for sharing your feedback. I will improve the standard further.
@kangnifredable
@kangnifredable 10 месяцев назад
i have fixed it. wow
@kangnifredable
@kangnifredable 10 месяцев назад
i have an issue with CORS i am using ubuntu and i am developping with ionic react capacitor. while i send data from ionic to mysql nothig appear in my mysql database. i really don't know what is going on
@diegoalejandromunozaranzol524
@diegoalejandromunozaranzol524 2 месяца назад
Do you resolve that problem? I have the same issue
@kangnifredable
@kangnifredable 11 месяцев назад
Wow you did it. Thank you so much
@techishare9993
@techishare9993 11 месяцев назад
You're welcome!
@kangnifredable
@kangnifredable 11 месяцев назад
​@@techishare9993excuse do you know how to integrate a Google mapping inside the ionic react capacitor and store the GPS position inside mysql to mark and show them on Google map inside the ionic react capacitor app ?
@kangnifredable
@kangnifredable 10 месяцев назад
@@techishare9993 hello. sorry to disturb you again. I import image through ionic react and post it with axios inside my php mysql. but nothing has sent. must i put .files on the variable in the axios syntax?
@kangnifredable
@kangnifredable 11 месяцев назад
Good job. Do you have an exemple with ionic react capacitor ? Or is it the same process?
@techishare9993
@techishare9993 11 месяцев назад
Its same. I will try to post videos using react.
@kangnifredable
@kangnifredable 11 месяцев назад
@@techishare9993 for ionic react i don't have to use angular syntaxe, do i?
@techishare9993
@techishare9993 11 месяцев назад
You can refer this video for react ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-QsMSCHCTXoA.htmlsi=HacieWOLRo1ERJiu
@elias642
@elias642 11 месяцев назад
I'm getting error 400 and error 404, quite strange since I pasted the correct API key
@burakhorozoglu5817
@burakhorozoglu5817 Год назад
thanks a lot. at last i can find a working solution that when i make same and works :)
@JOSEERICKANDITAPUY
@JOSEERICKANDITAPUY Год назад
there are few people who make current ionic content, your videos are incredible and well explained, you could upload a video making an administrator panel (which logs in and where you can do the crud of information for the user to see if it has been updated or deleted something
@kangnifredable
@kangnifredable Год назад
Excuse me i don't know if you could help me. I am using ionic react. How could i insert data from my ionic page to my database mysql
@techishare9993
@techishare9993 11 месяцев назад
You can refer this video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-QjJPsxbW_0c.htmlsi=LJCoHXphRixsGbxC
@user-uf6im1qn2n
@user-uf6im1qn2n Год назад
how to find axios post url
@kayarawasbanlaywa2506
@kayarawasbanlaywa2506 Год назад
Thanks for your effort you made Ionic easy to understand. Can you make login tutorial in Ionic using mysqli , im struggling with my project in Ionic on login and using cookies for future reference. Thanks
@techishare9993
@techishare9993 Год назад
Sure...please stay connected for the video..
@kayarawasbanlaywa2506
@kayarawasbanlaywa2506 Год назад
Thanks 😊
@tembihanniel5289
@tembihanniel5289 Год назад
Love ur videos. I have been searching fir this for a long time now
@nelsonmouatvergara
@nelsonmouatvergara Год назад
Very Thank you!!!!
@user-lb1ne6dr4d
@user-lb1ne6dr4d Год назад
Please can you make a video of how to create a ( create, delete, update, read) php API, in this wonderful video you made just get API, Thank you 🙏🏽
@nelsonmouatvergara
@nelsonmouatvergara Год назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-bqiHfIBh8Xk.html here!!! Thank you!!!
@techishare9993
@techishare9993 11 месяцев назад
You can refer this video in ionic 6 Angular for CRUD : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-QjJPsxbW_0c.htmlsi=8HTvoCqz__gbk045 Ionic 6 React CRUD :ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-QsMSCHCTXoA.htmlsi=lcEjO7pEKxV_-STf ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-QsMSCHCTXoA.htmlsi=lcEjO7pEKxV_-STf
@ionwizard606
@ionwizard606 Год назад
In my case it saying Axios Error "ERR_NETWORK"
@techishare9993
@techishare9993 Год назад
There may be some network issue from your side or can you post the error here
@jonesfischer9476
@jonesfischer9476 Год назад
my alertController is not recognized, how can i add it?
@techishare9993
@techishare9993 Год назад
You can refer to this link to use alertcontroller ionicframework.com/docs/api/alert Step 1: import { AlertController } from '@ionic/angular'; Step 2: Add in the Constructor private alertController: AlertController Eg: constructor(private alertController: AlertController) {} Step 3: Add the function inside the js file presentAlert() { const alert = await this.alertController.create({ header: 'Alert', subHeader: 'Important message', message: 'This is an alert!', buttons: ['OK'], }); await alert.present(); } Step 4: Call the function presentAlert()
@aabuabara
@aabuabara Год назад
Would this tutorial work with ionic 5?
@techishare9993
@techishare9993 Год назад
Yeah sure it will work...
@kingmega8730
@kingmega8730 3 года назад
Sir please continue
@techishare9993
@techishare9993 3 года назад
Yeah sure
@atomixinc2911
@atomixinc2911 4 года назад
Bien gracias, lo que buscaba, pero deberias hacerlo con visual studio code para que sea mas claro, asi la gente que tiene menos experiencia lo podra entender
@techishare9993
@techishare9993 4 года назад
Gracias por sus valiosos comentarios. Utilizará alguna herramienta externa para aclarar el contenido en los videos futuros.
@feyaluciano
@feyaluciano 3 года назад
@@techishare9993 me sucede que en localhost, con ng serve me cambia la tipografia, but not in de movil, que podria ser?
@mapurplecakes
@mapurplecakes 4 года назад
SUPER
@techishare9993
@techishare9993 4 года назад
thanks