- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想从用户端为我的项目上传个人资料图片。
我的 HTML 代码是
<div class=" col-xs-12">
<div class="thumbnail">
<!--<img id="profilepic" class="profilepicholder" height="200" width="200">-->
<img id="profilepic" class="profilepicholder" src="#" alt="your image" height="200" width="200" />
<input type='file' />
<button id="save" class="save btn btn-primary btn-block">Save</button>
</div>
</div>
上传文件的Javascript是
$(function () {
$(":file").change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = imageIsLoaded;
reader.readAsDataURL(this.files[0]);
}
});
});
function imageIsLoaded(e) {
$('#profilepic').attr('src', e.target.result);
};
$(document).ready(function () {
profile_url = "";
upload_counter = 0;
uploaded_counter = 0;
/*
Function to carry out the actual PUT request to S3 using the signed request from the app.
*/
function upload_file(file, signed_request, url, type) {
var xhr = new XMLHttpRequest();
xhr.open("PUT", signed_request);
xhr.setRequestHeader('x-amz-acl', 'public-read');
xhr.onload = function () {
if (xhr.status === 200) {
console.log(url)
//this is the URL , keep the value in the variable
$(document).ready(function () {
/* $("#social_card").attr("value", url);
console.log("oi" + url);
*/ //national_id_url = url;
upload_counter = upload_counter + 1;
console.log(upload_counter);
if (type == "profilepic") {
profile_url = url;
}
});
}
};
xhr.onerror = function () {
alert("Could not upload file.");
};
xhr.send(file);
}
/*
Function to get the temporary signed request from the app.
If request successful, continue to upload the file using this signed
request.
*/
function get_signed_request(file, type) {
var xhr = new XMLHttpRequest();
xhr.open("GET", "/sign_s3?file_name=" + $(".username").val() + "/" + file.name + "&file_type=" + file.type);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
var response = JSON.parse(xhr.responseText);
upload_file(file, response.signed_request, response.url, type);
} else {
alert("Could not get signed URL.");
}
}
};
xhr.send();
}
/*
Function called when file input updated. If there is a file selected, then
start upload procedure by asking for a signed request from the app.
*/
function init_upload() {
console.log("here");
var profilepic_files = document.getElementById("profilepic").innerHTML;
var profilepic_file = profilepic_files[0];
if (profilepic_file == null) {
//alert("No file selected.");
} else {
get_signed_request(profilepic_file, "profilepic");
}
}
var myInterval;
$("#save").mouseup(function () {
$('.loadingcustom').css({
display: 'block',
position: 'absolute',
width: '200vw',
});
init_upload();
var profilepic_files = document.getElementById("profilepic").innerHTML;
var profilepic_file = profilepic_files[0];
if (profilepic_file != null) {
uploaded_counter = uploaded_counter + 1;
}
myInterval = setInterval(function () {
console.log(upload_counter);
console.log(uploaded_counter);
if (upload_counter == uploaded_counter) {
upload_counter = uploaded_counter + 1;
var userData = {
"profile_url": profile_url,
};
console.log(userData);
$.ajax({
type: "POST",
url: "/users/",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify(userData),
success: function (data) {
console.log("user created");
$('.alert').show();
$('.loadingcustom').hide();
$('.savebtn').show();
clearInterval(myInterval);
setTimeout(function () {
window.location.reload();
}, 2000);
}
});
}
}, 3000);
});
});
我正在将此文件上传到 MongoDB。我的要求是为特定用户上传图片。
最佳答案
是的!我可以那样做。想与您分享我的代码 :) 此代码用于上传文件和更新上传的文件。
<script>
$(document).ready(function () {
var get_params = function (search_string) {
var parse = function (params, pairs) {
var pair = pairs[0];
var parts = pair.split('=');
var key = decodeURIComponent(parts[0]);
var value = decodeURIComponent(parts.slice(1).join('='));
// Handle multiple parameters of the same name
if (typeof params[key] === "undefined") {
params[key] = value;
} else {
params[key] = [].concat(params[key], value);
}
return pairs.length == 1 ? params : parse(params, pairs.slice(1))
}
// Get rid of leading ?
return search_string.length == 0 ? {} : parse({}, search_string.substr(1).split('&'));
}
var params = get_params(location.search);
var usersId = params['id'];
var uid = usersId.replace(/\s+/g, "");
var username;
var profilepicture;
var passcard;
$.ajax({
type: "GET",
url: "/users/" + uid,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
console.log(data.passport_url);
username = data.username;
$('#nidimage').attr('src', data.nid_url);
$('#passcard').attr('src', data.passport_url);
$('#birthimage').attr('src', data.birth_url);
$('#vehiclelicenceimage').attr('src', data.vehicle_url);
$('#drivinglicimage').attr('src', data.driving_url);
}
});
national_id_url = "";
passport_url = "";
birth_certificate_url = "";
driving_license_url = "";
vehicle_license_url = "";
profile_pic_url = "";
upload_counter = 0;
uploaded_counter = 0;
/*
Function to carry out the actual PUT request to S3 using the signed request from the app.
*/
function upload_file(file, signed_request, url, type) {
var xhr = new XMLHttpRequest();
xhr.open("PUT", signed_request);
xhr.setRequestHeader('x-amz-acl', 'public-read');
xhr.onload = function () {
if (xhr.status === 200) {
// console.log(url)
//this is the URL , keep the value in the variable
var userData;
if (type == "nid") {
national_id_url = url;
userData = {
nid_url: national_id_url
};
} else if (type == "passport") {
passport_url = url;
userData = {
passport_url: passport_url
};
} else if (type == "birth") {
birth_certificate_url = url;
userData = {
birth_url: birth_certificate_url
};
} else if (type == "vehicle") {
vehicle_license_url = url;
userData = {
vehicle_url: vehicle_license_url
};
} else if (type == "driving") {
driving_license_url = url;
userData = {
driving_url: driving_license_url
};
} else if (type == "propic") {
profile_pic_url = url;
userData = {
profile_url: profile_pic_url
};
}
// console.log("pp"+ passport_url);
// console.log("boo "+uid);
$.ajax({
type: "PUT",
url: "/users/" + uid,
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify(userData),
success: function (data) {
console.log("user Updated");
$('.loadingcustom').css({
display: 'none',
});
//swal("Your file has been updated successfully!", "success")
swal("Good job!", "Your file has been updated successfully!", "success")
}
});
}
};
xhr.onerror = function () {
alert("Could not upload file.");
};
xhr.send(file);
}
// /*
// Function to get the temporary signed request from the app.
// If request successful, continue to upload the file using this signed
// request.
// */
function get_signed_request(file, type) {
var xhr = new XMLHttpRequest();
xhr.open("GET", "/sign_s3?file_name=" + username + "/" + file.name + "&file_type=" + file.type);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
var response = JSON.parse(xhr.responseText);
upload_file(file, response.signed_request, response.url, type);
} else {
alert("Could not get signed URL.");
}
}
};
xhr.send();
}
//
// /*
// Function called when file input updated. If there is a file selected, then
// start upload procedure by asking for a signed request from the app.
// */
function init_upload(filetype) {
console.log("here");
if (filetype == "nid-upload") {
var nid_files = document.getElementById("national-card").files;
var nid_file = nid_files[0];
if (nid_file == null) {
alert("No file selected.");
}
get_signed_request(nid_file, "nid");
}
if (filetype == "pass-upload") {
var pass_files = document.getElementById("passport-card").files;
var pass_file = pass_files[0];
if (pass_file == null) {
alert("No file selected.");
}
get_signed_request(pass_file, "passport");
}
if (filetype == "birth-upload") {
var birth_files = document.getElementById("birth-cirtificate").files;
var birth_file = birth_files[0];
if (birth_file == null) {
alert("No file selected.");
}
get_signed_request(birth_file, "birth");
}
if (filetype == "driving-upload") {
var driving_files = document.getElementById("driving-license").files;
var driving_file = driving_files[0];
if (driving_file == null) {
alert("No file selected.");
}
get_signed_request(driving_file, "driving");
}
if (filetype == "vehicle-upload") {
var vehicle_files = document.getElementById("vehicle-license").files;
var vehicle_file = vehicle_files[0];
if (vehicle_file == null) {
alert("No file selected.");
}
get_signed_request(vehicle_file, "vehicle");
}
if (filetype == "propic-upload") {
var profile_files = document.getElementById("profile-pic").files;
var profile_file = profile_files[0];
if (profile_file == null) {
alert("No file selected.");
}
get_signed_request(profile_file, "propic");
}
}
$(".save").mouseup(function () {
$('.loadingcustom').css({
display: 'block',
//zindex: 1,
position: 'fixed',
width: '200vw',
// top: '450px'
});
console.log("clicked");
var toupload = ($(this).attr("id"));
toupload.replace(/\s+/g, "");
init_upload(toupload);
});
/* $(function () {
$(":file").change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = imageIsLoaded;
reader.readAsDataURL(this.files[0]);
}
});
});
*/
function imageIsLoaded(e) {
};
});
</script>
关于javascript - 使用 Javascript 上传个人资料图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33751158/
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章dede会员列表调用适用于企业、个人由作者收集整理,如果你对这篇文章有兴
如何在 MySQL 中创建个人组消息传递的消息对话架构。是否有可能创建以下场景。 已读/未读 如果用户删除对话不影响其他对话。(例如用户 A 和 B 有消息对话 A 清除消息,则 B 消息不应影响)
是否可以将一些数据存储在您的个人 github 页面的某个位置? 例如触发计数器的按钮。当您单击该按钮时,计数器会加 1。当其他用户访问该页面并单击该按钮时,计数器会再次加 1。 因此它将是页面上显示
我正在编写一个守护程序应用程序来使用 Outlook Mail REST API ( https://learn.microsoft.com/en-us/previous-versions/offic
我的电脑有两个外置声卡和一个在带有 windows vista 的主板上。在 Vista 中,它看到同一个声卡的两个实体,一个数字输出和一个模拟输出。 当我尝试播放带有数字音频的视频文件时,比如 dv
我有一个个人 Apple 开发者计划,我希望我的 friend 帮助我开发我的应用程序。我的 friend ,他自己有一个个人 Apple 开发者计划,所以他创建了一个新的 Apple ID,我将他的
我知道您可以编辑在 tumblr 博客上呈现所有帖子博客主页的 html/AngularJS。但是,有没有办法添加自定义 ...到个别职位?我想在逐个帖子的基础上做一些 javascript 的事情,
首先,我想提前感谢您在此问题上提供的任何帮助。 Valgrind下面粘贴的输出源自以下单行 C 代码。 for( j=i;jsize-1;j++ ) s3->delete_tail( s3 ); 但是
我有几个服务器在测试环境中运行我有一个 CA 并且可以认证一个页面。 是否可以为从我收到的 CA 派生的测试环境创建我自己的 CA? 最佳答案 您可以使用 java 开发工具 keytool 在将要运
我正在尝试实现 custom UITabbar . 我发现的任何东西都涉及在 tabbarItem 上覆盖一个矩形。那么有什么直接的方法可以做到这一点吗? 最佳答案 要更改单个 tabBar 项目的色
我读了git book但不知何故忘记了rule上面写着: Do not rebase commits that you have pushed to a public repository. If y
我在工作中使用 BitKeeper,我想在家里为自己做一个基本的代码备份(考虑到我很少备份) //我以前从未使用过 git,所以我需要很多帮助 我认为在我的家庭服务器上有一个 git 存储库可能是个好
我必须处理大量扫描的 ID,我需要从中提取照片以进行进一步处理。这是一个虚构的例子: 问题是扫描没有完全对齐(最多旋转 10 度)。所以我需要找到它们的位置,旋转它们并剪出照片。事实证明,这比我原先想
在下面的代码块中,有几个(故意的)错误,我的任务是找到它们并解释这些错误是否会导致编译代码时出现问题,或者至少会导致一些逻辑问题。 public class Person { private St
一个 friend 给了我这个问题作为挑战,我试图在 LeetCode 上找到这样的问题,但很遗憾没有找到。 问题 Given a line of people numbered from 1 to
我有一个绑定(bind)到 VSTS 的公司帐户,以及一个绑定(bind)到同一电子邮件地址但作为个人帐户的 Azure 帐户。 VSTS 帐户:[email protected] (公司账户) Az
我刚刚创建了一个新的 MVC 项目并创建了一个空 View 。我在尝试声明 View 的模型时编写了第一行代码,如下所示: @model Personal; 其中,personal 是实际存在的模型
我是Kotlin的新手,我尝试理解所示的交换两个变量值的简短代码。 我不明白为什么它和b在Also函数中具有不同的值。他们不使用十进制值2引用相同的内存地址吗? 谢谢。 var a = 1 var b
我正在尝试查询与类/个人相关的所有 AnnotationAssertion。 下面是我的来源片段: #Car
我们目前正在使用威瑞信的时间戳服务,但时间戳服务器时常变得不可用 - 主要是由于我们的 ISP 故障。 我们现在为我们构建的所有内容添加时间戳,甚至是简单的开发构建,因为我们在 Vista 中遇到了很
我是一名优秀的程序员,十分优秀!