How to fetch input image url to another input using of angularjs?

151 Views Asked by At
  • Hi all i am using MEAN stack in my Web portal with AngularJS as my front-end,
  • In my portal i want to upload user profile image, so i have used uplodcareplatform to upload the images in my portal.

  • My Plunker

  • after chooses the Image we get that image url in upload input, then we need to fetch that url into below input to store in backend. so we tried to get the solution like ng-bind="userimg=img" value="{{img}}" which is not working. please check and update us thanks.

My Code :-

<div>
    <label >Upload Img</label>
  <input ng-model="img" role="uploadcare-uploader" name="content" data-public-key="240426036fd9daf2d723" data-images-only />

</div>

<div>
    <label for="quantity">Fetch above input value in this input</label>
    <input type="text" ng-model="userimg" ng-bind="userimg=img" value="{{img}}">

</div> 
0

There are 0 best solutions below