上传图片到Kinvey和Angularjs

时间:2014-05-23 15:12:39

标签: javascript angularjs kinvey

我正在尝试更改我的应用当前所做的操作,以便不是输入引用图像的网址,而是将图像上传到Kinvey集合。 这是一个关于我目前如何将信息从我的表单保存到我的kinvey系列的JSfiddle。

http://jsfiddle.net/k6MQK/ 下面是保存表单数据的角度代码:

$scope.savePeep = function () {

    var dataObj = angular.copy($scope.peep);
    delete dataObj['$$hashKey'];

    // Add the ad hoc fields to the peep object if they are filled out
    if ($scope.adHocItem) {
        dataObj.adHocLocation = $scope.adHocItem.normalized_location;
        dataObj.adHocLocation_display = $scope.adHocItem.display_location;
    }


    KinveyService.savePeep(dataObj, function (_result) {

        debugger;
        // update local collection
        KinveyService.setCollectionObject(_result.data, $stateParams.peepId);

        $state.transitionTo('home');
    });
};

我想更改它,以便代替像这样的文本输入:

   <input type="text" id="menu_url" name="menu_url"
 placeholder="" class="form-control" ng-model="peep.menu_url">

它的文件上传输入有效。

<input type="file" id="menu_url" name="menu_url"
     placeholder="" class="form-control" ng-model="peep.menu_url">

1 个答案:

答案 0 :(得分:1)

使用Kinvey&amp; amp ;;进行简单文件上传AngularJS http://bit.ly/1ncdQLq

<!DOCTYPE html>
<html>
<head>
    <title>Kinvey File Demo</title>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
    <script src="https://da189i1jfloii.cloudfront.net/js/kinvey-angular-1.1.4.min.js"></script>
</head>


<body ng-app="kinveyUploadApp" ng-controller="MainCtrl">

<input type="file" id="files" name="files[]" />
<p ng-if="fileModel">
File Size: {{fileModel.size}} Last Modified: {{fileModel['_kmd'].lmt | date:'yyyy-MM-dd HH:mm:ss Z'}}
</p>

<script>
    angular.module('kinveyUploadApp', ['kinvey'])
            .run(['$kinvey', function ($kinvey) {
                // Kinvey initialization starts
                var promise = $kinvey.init({
                    appKey: 'appKey',
                    appSecret: 'appSecret'
                });
                promise.then(function () {
                    // Kinvey initialization finished with success
                    console.log("Kinvey init with success");

                }, function (errorCallback) {
                    // Kinvey initialization finished with error
                    console.log("Kinvey init with error: " + JSON.stringify(errorCallback));
                });
            }])

            .controller('MainCtrl', ['$scope', '$kinvey', function ($scope, $kinvey) {

                $scope.fileModel = {};

                angular.element(document).find('input')[0].addEventListener('change', function (e) {
                    var theFile = e.target.files[0];

                    var promise = $kinvey.File.upload(theFile, {
                        _filename: theFile.name,
                        public: true,
                        size: theFile.size,
                        mimeType: theFile.type
                    }).then(function (_data) {
                        console.log("[$upload] success: " + JSON.stringify(_data, null, 2));
                        $scope.fileModel = _data;
                    }, function error(err) {
                        console.log('[$upload] received error: ' + JSON.stringify(err, null, 2));
                    });
                }, false);
            }]);
</script>
</body>