BalaDev
BalaDev

Reputation: 201

how to set user upload a pic and display the pic and add to cart that pic in angularjs?

I need to set user's add pic and display pic and add to cart that pic.

profile.html

<li class="box nocursor" ng-repeat="item in items">
<img src="image location" width="100px" height="100px"/>

Upvotes: 1

Views: 36

Answers (1)

Shashank Vivek
Shashank Vivek

Reputation: 17494

Well, your question is very blur. For uploading a pic, you can go through this jsFiddle. For understanding it, refer this blog.

var uploadUrl = "/fileUpload";

use server call here to upload the file to server.And do some checks that the file is in required format.Once you have it on server, write controllers/services to handle Add to cart functionality.

Upvotes: 2

Related Questions