angularjs 文件上传到文件 select,php

angularjs file upload on file select with php

我想在没有提交按钮的情况下选择后上传图片。
我使用了来自 GitHub.
danialfarids 插件 我想他用 C# 创建了服务器,我想将其更改为 php。我在编写 php 文件处理程序时遇到问题。

这是我的脚本文件。

 var app = angular.module('fileUpload', ['ngFileUpload']);

    app.controller('MyCtrl', ['$scope', 'Upload', '$timeout', function ($scope, Upload, $timeout) {
        $scope.uploadPic = function(file) {
            file.upload = Upload.upload({
                method:'POST',
                url: 'http://localhost/angular/upload.php',
                data: {file: file, username: $scope.username}
            });

            file.upload.then(function (response) {
                $timeout(function () {
                    file.result = response.data;
                });
            }, function (response) {
                if (response.status > 0)
                    $scope.errorMsg = response.status + ': ' + response.data;
            }, function (evt) {
                file.progress = Math.min(100, parseInt(100.0 * evt.loaded / evt.total));
            });
        }
    }]);

这是我的 html 文件

<form name="myForm"  >
<fieldset>

    <legend>Upload on file select</legend>
    <br>Photo:
    <input type="file" ngf-select="uploadPic(picFile)" ng-model="picFile" name="picFile"
           accept="image/*" ngf-max-size="2MB" required
           ngf-model-invalid="errorFiles">

    <img ng-show="myForm.file.$valid" ngf-thumbnail="picFile" class="thumb">

    <br>
    <button ng-disabled="!myForm.$valid"
            ng-click="uploadPic(picFile)">Submit</button>

    <div class="con">
        <div class="pg" style="width:{{picFile.progress}}%"  ></p></div>
    </div>
    <p ng-bind="picFile.progress + '%'"></p>
           <span ng-show="picFile.result">Upload Successful</span>
    <span class="err" ng-show="errorMsg">{{errorMsg}}</span>
</fieldset>
</form>

这是css

<style>
    .thumb {
        width: 240px;
        height: 240px;
        float: none;
        position: relative;
        top: 7px;
    }
    form .progress {
        line-height: 1px;
    }
    .progress {
        display: inline-block;
        width: 300px;
    }

    .con{
        width:300px;
    }
    .pg {
        font-size: smaller;
        background: #000000;
        width:0px;
        height:1px;
    }
</style>

这是基本的 upload.php(在 localhost/angular/ 中找到),我认为它行不通。

<?php if ( !empty( $_FILES ) ) {

$tempPath = $_FILES[ 'picFile' ][ 'tmp_name' ];
$uploadPath = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR . $_FILES[ 'picFile' ][ 'name' ];

move_uploaded_file( $tempPath, $uploadPath );

$answer = array( 'answer' => 'File transfer completed' );
$json = json_encode( $answer );

echo $json; } else {

echo 'No files'; } ?>

我的 xampp 服务器正在运行。我还包括 angular 个文件,angularjsng-file-upload-shim.min.jsng-file-upload.min.js 来自 danialfarid.

我找到了这个问题的答案,问题不在代码上,问题的发生是因为我将 XMLHttpRequest 发送到与我所在的域不同的域。而且解决此问题的简单方法是向 chrome 添加扩展名。 Cors extension。这解决了问题。