我正在使用Ionic / Angular JS构建移动应用程序。在特定标签中,用户可以使用ngCordova Camera Plugin填写表单并选择图片并发送表单。我想将所有表单详细信息发送到www.mydomain.com/receive.php
。
以下是我的特定标签的HTML文件的样子:
<ion-view view-title="Form">
<ion-content>
<div class="list">
<div class="item item-divider">
Personal Details
</div>
<label class="item item-input">
<span class="input-label">Name</span>
<input name="fname" type="text" placeholder="John">
</label>
<label class="item item-input">
<span class="input-label">Surname</span>
<input name="lname" type="text" placeholder="Smith">
</label>
<label class="item item-input">
<span class="input-label">Email</span>
<input name="email" type="email" placeholder="john.smith@gmail.com">
</label>
<label class="item item-input">
<span class="input-label">Phone</span>
<input name="phone" type="tel" placeholder="555234567">
</label>
<div class="item item-divider">
Location
</div>
<button class="button button-full button-balanced" ng-click="getLocation()"><i class="ion-android-locate"></i> Get my location</button>
<label class="item item-input">
<span class="input-label">Street</span>
<input name="street" type="text" ng-model="pStreet.value">
</label>
<label class="item item-input">
<span class="input-label">Number</span>
<input name="number" type="text" ng-model="pNumber.value">
</label>
<label class="item item-input hidden">
<span class="input-label">Lat</span>
<input name="lat" type="text" ng-model="pLat.value">
</label>
<label class="item item-input hidden">
<span class="input-label">Lng</span>
<input name="lng" type="text" ng-model="pLng.value">
</label>
<label class="item item-input hidden">
<span class="input-label">Address</span>
<input name="address" type="text" ng-model="pAddress.value">
</label>
<div class="item item-divider">
Photo
</div>
<div class="item">
<div class="row">
<div class="photo">
<button ng-click="selectPicture()">Select Picture</button>
<img id="myImage" style="width: 100%; height: auto;"/>
</div>
</div>
</div>
<button class="button button-full button-positive" ng-click="">Send form</button>
</div>
</ion-content>
</ion-view>
以下是选项卡的Controller JS:
.controller('PetitionsCtrl', function($scope, $cordovaGeolocation, $cordovaCamera, $log, $ionicLoading, $http, $timeout, $compile) {
$scope.getLocation = function() {
$ionicLoading.show({
templateUrl: 'loading.html',
hideOnStateChange: true
});
var posOptions = {timeout: 15000, enableHighAccuracy: true};
$cordovaGeolocation
.getCurrentPosition(posOptions)
.then(function (position) {
$scope.lat = position.coords.latitude;
$scope.lng = position.coords.longitude;
$scope.pLat = {value: $scope.lat};
$scope.pLng = {value: $scope.lng};
var geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng($scope.lat, $scope.lng);
var request = {
latLng: latlng
};
geocoder.geocode(request, function(data, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (data[0] != null) {
$scope.$apply(function () {
$scope.pStreet = {value: data[0].address_components[0].types[0] === 'route' ? data[0].address_components[0].long_name : data[0].address_components[1].long_name};
$scope.pNumber = {value: data[0].address_components[0].types[0] === 'street_number' ? data[0].address_components[0].long_name : ''};
$scope.pAddress = {value: data[0].formatted_address};
setTimeout(function () {
$ionicLoading.hide();
}, 500);
});
} else {
setTimeout(function () {
$ionicLoading.hide();
}, 500);
}
}
})
});
};
$scope.selectPicture = function() {
var options = {
quality: 90,
destinationType: Camera.DestinationType.DATA_URL,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
allowEdit: false,
encodingType: Camera.EncodingType.JPEG,
popoverOptions: CameraPopoverOptions,
saveToPhotoAlbum: false,
correctOrientation: true
};
$cordovaCamera.getPicture(options).then(function(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
}, function(err) {
// err
});
}
})
当我们谈论Ionic / Angular时,我是一个菜鸟(PHP专家,所以我会照顾它)。 如何将表单详细信息(包括imageDate)传递给PHP?
答案 0 :(得分:2)
安德烈。
您需要绑定每个html输入模型。离。
<label class="item item-input">
<span class="input-label">Name</span>
<input name="fname" type="text" placeholder="John" ng-model="myForm.fname">
</label>
<label class="item item-input">
<span class="input-label">Surname</span>
<input name="lname" type="text" placeholder="Smith" ng-model="myForm.lname">
</label>
你的控制器。
$cordovaCamera.getPicture(options).then(function(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
// You want to send the data
$rootScope.data = {
src : "data:image/jpeg;base64," + imageData,
fname : $scope.myForm.fname,
lname : $scope.myForm.lname
}
}, function(err) {
// err
});
你的$ http。
var url = "www.mydomain.com/receive.php";
$http({
method: 'POST',
data: $rootScope.data,
url: url
}).
then(function (response) {
//ok
}, function (response) {
//fail
});
你的PHP。
$src = $_REQUEST['src'];
$fname = $_REQUEST['fname'];
$lname = $_REQUEST['lname'];
此代码可以保存您的图像。
$base64_string_img = $src;
$data = explode(',', $base64_string_img);
$filename_path = md5(time() . uniqid()) . ".jpg";
$decoded = base64_decode($data[1]);
file_put_contents("uploads/" . $filename_path, $decoded);
答案 1 :(得分:0)
我们使用插件来做到这一点,这是最简单的方法: https://github.com/apache/cordova-plugin-file-transfer
每份文件:
var win = function (r) {
console.log("Code = " + r.responseCode);
console.log("Response = " + r.response);
console.log("Sent = " + r.bytesSent);
}
var fail = function (error) {
alert("An error has occurred: Code = " + error.code);
console.log("upload error source " + error.source);
console.log("upload error target " + error.target);
}
var options = new FileUploadOptions();
options.fileKey = "file";
options.fileName = fileURL.substr(fileURL.lastIndexOf('/') + 1);
options.mimeType = "text/plain";
var params = {};
params.value1 = "test";
params.value2 = "param";
options.params = params;
var ft = new FileTransfer();
ft.upload(fileURL, encodeURI("http://some.server.com/upload.php"), win, fail, options);