Posts

Showing posts from January 24, 2019

Dual nationality (US/UK) visiting US but US passport expired, missed deadline to renew [duplicate]

Image
7 1 This question already has an answer here: What documents to show if I'm a US citizen with no US passport to re-enter the US? 3 answers I am a dual national with UK and US citizenship living in the UK. My US passport needed renewing and I sent it off. I apparently didn't enclose a picture, although I think it just fell out and missed the deadline to re-send the information. Mainly due to a medical condition, the approved courier company not arriving to collect the passport until 10.30pm (scheduled 7am-7pm) and I can't really justify the expense of paying again. However, my aunt is unwell in the US and I'm wondering if I can apply for and travel on an ESTA using my UK passport? It's not a confirmed trip, just more a question about the feasibility of visiting. usa passports dual-nationality share | improve this question edited Nov 26 '16 at 16:43 pnuts 26.8k 3 67 164 asked Nov 26 '16 at 16:26 RTWDymonds

How to use FileSaver in angular 5 correctly?

Image
0 I'm trying to save file to file system using file upload functionality. Since the file is require for the angular app and not for the backend (rest api - java), I decided to save it in the frontend app which means somewhere inside the assets folder in angular app. I've install angular-file-saver. Template code: <input type="file" name="file-7" id="file-7" class="inputfile inputfile-6" (change)="handleFileInput($event.target.files)"> component code: import FileSaver from 'angular-file-saver'; handleFileInput(files: FileList) this.imageUpload = files.item(0); this.imageFileName = this.logoToUpload.name; // how to use FileSaver here ? //this.imageUpload doesn't have data or something like this Any idea how to actually save the file in a folder ? thanks. angular file share | improve this question asked Nov 11 '18 at 6:50 user2304483 user2304483 73 1 9 add a