mui 기반 웹 앱 개발, 사용자 프로필 사진 찍 기 업로드, 앨범 선택 업로드
/* */
document.getElementById('headImage').addEventListener('tap', function() {
if (mui.os.plus) {
var a = [{
title: " "
}, {
title: " "
}];
plus.nativeUI.actionSheet({
title: " ",
cancel: " ",
buttons: a
}, function(b) { /*actionSheet */
switch (b.index) {
case 0:
break;
case 1:
getImage(); /* */
break;
case 2:
galleryImg();/* */
break;
default:
break;
}
})
}
}, false);
//
function getImage() {
var c = plus.camera.getCamera();
c.captureImage(function(e) {
plus.io.resolveLocalFileSystemURL(e, function(entry) {
var s = entry.toLocalURL() + "?version=" + new Date().getTime();
uploadHead(s); /* */
}, function(e) {
console.log(" :" + e.message);
});
}, function(s) {
console.log("error" + s);
}, {
filename: "_doc/head.png"
})
}
//
function galleryImg() {
plus.gallery.pick(function(a) {
plus.io.resolveLocalFileSystemURL(a, function(entry) {
plus.io.resolveLocalFileSystemURL("_doc/", function(root) {
root.getFile("head.png", {}, function(file) {
//
file.remove(function() {
console.log("file remove success");
entry.copyTo(root, 'head.png', function(e) {
var e = e.fullPath + "?version=" + new Date().getTime();
uploadHead(e); /* */
// src
// , ,
},
function(e) {
console.log('copy image fail:' + e.message);
});
}, function() {
console.log("delete image fail:" + e.message);
});
}, function() {
//
entry.copyTo(root, 'head.png', function(e) {
var path = e.fullPath + "?version=" + new Date().getTime();
uploadHead(path); /* */
},
function(e) {
console.log('copy image fail:' + e.message);
});
});
}, function(e) {
console.log("get _www folder fail");
})
}, function(e) {
console.log(" :" + e.message);
});
}, function(a) {}, {
filter: "image"
})
};
//
function uploadHead(imgPath) {
var mainImage = document.getElementById("headImage");
console.log("imgPath = " + imgPath);
mainImage.src = imgPath;
mainImage.style.width = "90px";
mainImage.style.height = "90px";
var image = new Image();
image.src = imgPath;
image.onload = function() {
var imgData = getBase64Image(image);
/* */
var userId=plus.storage.getItem('userId');
mui.ajax(httpUrl+'appPath/appPath!ajaxUploadImg?userId='+userId,{
data:{imgData:imgData},
dataType:'json',// json
type:'post',//HTTP
timeout:10000,// 10 ;
success:function(data){
console.log(' ');
},
error:function(xhr,type,errorThrown){
mui.toast(' , !');
}
});
}
}
// base64
function getBase64Image(img) {
var canvas = document.createElement("canvas");
var width = img.width;
var height = img.height;
// calculate the width and height, constraining the proportions
if (width > height) {
if (width > 100) {
height = Math.round(height *= 100 / width);
width = 100;
}
} else {
if (height > 100) {
width = Math.round(width *= 100 / height);
height = 100;
}
}
canvas.width = width; /* */
canvas.height = height; /* */
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, width, height); /* */
var dataURL = canvas.toDataURL("image/png", 0.8);
return dataURL.replace("data:image/png;base64,", "");
}
function photoerror(img){
img.src="img/mryh.png";
img.null; //
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
앱 디자인에 맞게 Material UI 구성요소를 변경하는 방법 1부머티리얼 UI 구성요소는 Google의 머티리얼 디자인 가이드라인을 따르도록 설계되었으며 다양한 플랫폼에서 일관되게 보입니다. 그러나 경우에 따라 앱의 디자인과 일치하도록 일부 요소의 색상을 조정하거나 명백한 머티리...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.