Home > Web Front-end > JS Tutorial > body text

How to create an instruction to upload photos in AngularJS (detailed tutorial)

亚连
Release: 2018-06-04 17:50:38
Original
1438 people have browsed it

This article mainly introduces AngularJS to create an instruction example code for uploading photos. Friends who need it can refer to it

angularJS has been developing rapidly in recent years, and it is undoubtedly the most powerful and powerful one on the market. A mature framework can be said to be the king among single-page front-end applications. Two-way binding saves a lot of front-end code. The controller is also very difficult to control in terms of its action. Today we are going to talk about another comparison. The cool function is the directive of angularJS. If you have never heard of the directive of angularJS before, please try it out on your own. If you search for any article, it will be more detailed than what I can explain. This time I will use an image uploading directive that I wrote myself. As a case, the instructions in the actual operation process are explained in detail.

Previously, we used jqueryFileUpload to upload attachments on the front end. Every time we use it, we have to draw the style on the page, and then initialize the upload component in the controller. When the upload succeeds or fails, we need to do the corresponding processing. In this way, every time I write an attachment and upload it, I have to write code to process it. This is very repetitive work, so I want to use the instructions of angularJS to remove the repetitive work. The specific code is as follows:

.directive('imageUpload',['Constants',function(Constants){
return {
  restrict: 'E',
  scope: {
    scopeModel:'=',
    title:'@'
  },
  template : '
' +'{{title}}重新上传' +'' + '' + '{{title}}' + '
', link : function(scope, element, attrs) { $(element).fileupload({ url: 'file/upload', dataType: 'json', done: function(e, data) { var res = data.result; if(res.success){ scope.scopeModel=res.data.fileKey; scope.$apply(); } } }); scope.loadImg=function(key){ if(undefined==scope.scopeModel || null==scope.scopeModel || scope.scopeModel===''){ return $.ctx+'/images/noImage.jpg'; } if(scope.scopeModel.indexOf('http://')>-1){ return scope.scopeModel; } return $.ctx+'/file/getFile?fileKey='+scope.scopeModel; } } }; }]);
Copy after login

After the instruction is completed, you only need to write a line of code on the front-end page to complete the loading of photos (if you modify the page, you need to load the original photos) and the upload function, in which scopeModel is used for two-way binding. After passing the model in the controller when calling, the two-way binding between the instruction and the controller can be achieved. The template in the code is an element template, which can be replaced according to the specific style (I use bootstrap), as follows:

Copy after login

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to use Vue-Router patterns and hooks (detailed tutorial)

Get default in angularjs The value method of the selected radio button (detailed tutorial)

Comprehensive interpretation of cli in vue (detailed tutorial)

The above is the detailed content of How to create an instruction to upload photos in AngularJS (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!