本文目录一览:
php给安卓和ios提供图片接口问题?
看你app 怎么下载图片的,已存在文件怎么处理的?覆盖写 or 追加写? 旧文件应该删除吧
php微信拍照接口范例怎么写
// 图片接口
//拍照、本地选图
var images = {
localId: [],
serverId: []
};
wx.chooseImage({
success: function (res) {
images.localId = res.localIds;
alert('已选择 ' + res.localIds.length + ' 张图片');
}
});
//上传图片
$("#upload").click(function(){
if (images.localId.length == 0) {
alert('请先使用 chooseImage 接口选择图片');
return;
}
var i = 0, length = images.localId.length;
images.serverId = [];
function upload() {
wx.uploadImage({
localId: images.localId[i],
success: function (res) {
i++;
alert('已上传:' + i + '/' + length);
images.serverId.push(res.serverId);
if (i length) {
upload();
}
},
fail: function (res) {
alert(JSON.stringify(res));
}
});
}
upload();
});
// 5.4 下载图片
$("#download").click(function(){
if (images.serverId.length === 0) {
alert('请先使用 uploadImage 上传图片');
return;
}
var i = 0, length = images.serverId.length;
images.localId = [];
function download() {
wx.downloadImage({
serverId: images.serverId[i],
success: function (res) {
i++;
alert('已下载:' + i + '/' + length);
images.localId.push(res.localId);
if (i length) {
download();
}
}
});
}
download();
});
Android怎么调用php写的网络接口
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("?"+ "tel=" + tel);
HttpResponse response = httpclient.execute(httpget);
相应的api.php:
$tel= $_GET['tel'];
怎样把安卓的照片上传到php的服务器
可以用php写app接口给安卓软件调用,比如写一个图片上传接口,然后在图片上传的时候将信息传入这接口就可以了。