Vue+thinkphp5.1+axios to realize file upload

Vue+thinkphp5.1+axios to realize file upload

This article shares with you how to use thinkphp5.1 + Vue+axios to upload files for your reference. The specific content is as follows

Preface

Use thinkphp5.1 + Vue+axios+ to upload files

1. Page code

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Upload Demo</title>
    <style>
        .fileBtn{
            width: 180px;
            height: 36px;
            line-height: 36px;
            background: skyblue;
            border-radius: 5px;
            display: block;
            text-align: center;
            color: white;
        }
        [v-cloak] {
            display: none;
        }
    </style>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div id="app">
    <h1 v-cloak>{{message}}</h1>
    <form>
        <input type="file" name="file" ref="file" id="file" v-on:change="upload" style="visibility: hidden;" />
        <label for="file" class="fileBtn">Upload</label>
    </form>
</div>

</body>
</html>

<script>
    var vue = new Vue({
        el:'#app',
        data:{
            message:'File upload',
        },
        methods:{
            upload:function(file) {
                console.log(file.target.files[0]);
                var forms = new FormData()
                var configs = {
                    headers:{'Content-Type':'multipart/form-data; charse=UTF-8'}
                };
                forms.append('file',file.target.files[0]);
                axios.post('http://127.0.0.1/index/index/upload', forms,configs)
                    .then(function (response) {
                        if (response.data.code == 0) {
                            alert('File uploaded successfully');
                        } else {
                            alert('File upload failed');
                        }
                        file.target.value = '';

                    })
                    .catch(function (error) {
                        console.log(error);
                    });
            }
        }
    });

</script> 

2. Solve the problem of cross-domain interface

Apache 2.4.8 is used here. Find httpd.conf and add a line of configuration:

Header set Access-Control-Allow-Origin * 

3. Backend processing upload part

/**
     * File upload method verification*/
    public function upload()
    {
        try{
            $file = request()->file('file');

            if (empty($file)) {
                echo json_encode(['code' => 1,"msg" => 'Please select the upload file'],JSON_UNESCAPED_UNICODE);exit;
            }
            // Move to the framework application root directory /uploads/ directory $info = $file->move( '../uploads');
            if($info){
                // Get the upload information after successful upload // Output jpg
                echo json_encode(['code' => 0,"msg" => 'succcess'],JSON_UNESCAPED_UNICODE);exit;
            }else{
                // Upload failed to get error information echo json_encode(['code' => 1,"msg" => 'error'],JSON_UNESCAPED_UNICODE);exit;
            }
        } catch (Exception $e) {
            echo json_encode(['code' => 1,"msg" => 'error'],JSON_UNESCAPED_UNICODE);exit;
        }
}

4. Actual Effect

Test successful!

Regarding the learning tutorial of vue.js, please click on the special topics vue.js component learning tutorial and Vue.js front-end component learning tutorial for learning.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • PHP security attack and defense using file upload vulnerabilities and bypass techniques detailed
  • PHP case study on modifying the configuration of php.ini file upload size
  • php file upload to OSS and delete remote Alibaba Cloud OSS files
  • Analysis of phpcmsv9.0 arbitrary file upload vulnerability
  • Detailed explanation of the problem of uploading base64 encoded files in PHP
  • PHP implements file upload and download
  • PHP case analysis and solution for no file being uploaded

<<:  How to compile and install PHP and Nginx in Ubuntu environment

>>:  MySQL 8.0.12 Simple Installation Tutorial

Recommend

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

Analysis of Nginx Rewrite usage scenarios and configuration methods

Nginx Rewrite usage scenarios 1. URL address jump...

HTML tag ID can be a variable

<table id=" <%=var1%>">, the...

Mysql uses stored procedures to quickly add millions of data sample code

Preface In order to reflect the difference betwee...

Font Treasure House 50 exquisite free English font resources Part 2

Designers have their own font library, which allo...

Two methods of restoring MySQL data

1. Introduction Some time ago, there were a serie...

Linux uses lsof command to check file opening status

Preface We all know that in Linux, "everythi...

How to use CSS counters to beautify ordered lists of numbers

In web design, it is very important to use an org...

Security configuration and detection of SSL after the website enables https

It is standard for websites to enable SSL nowaday...

MySQL 8.0.15 installation tutorial for Windows 64-bit

First go to the official website to download and ...

JavaScript implements draggable progress bar

This article shares the specific code of JavaScri...

Share 13 basic syntax of Typescript

Table of contents 1. What is Ts 2. Basic Grammar ...

Example code of javascript select all/unselect all operation in html

Copy code The code is as follows: <html> &l...

Design of image preview in content webpage

<br />I have written two articles before, &q...