我有一个api,可以使用$ _FILES [' profile_image']文件。
我有一个Android应用程序,允许用户从外部媒体存储中选择一个图像,然后他们可以将它与许多其他editText字段等一起提交给API。
如何将所选图像传递给API?
以下是我的一些代码:
$return = array();
switch($_REQUEST['action']){
case 'register':
$v = true;
$fields = array('u_first_name', 'u_last_name');
foreach($fields as $f)
${$f} = $_REQUEST[$f];
$image_file = $_FILES['profile_image'];
//validate, upload image and manipulate db
}
我当前的android / java代码是:
submit_button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Boolean f;
Boolean i;
//Get All Fields
Edi_First_Name = (EditText)findViewById(R.id.Edi_First_Name);
Edi_Last_Name = (EditText)findViewById(R.id.Edi_Last_Name);
image_preview = (ImageView)findViewById(R.id.Reg_Profile_Image_Preview);
//check if any fields are empty, if not proceed to api, else show errors
f = Function.notEmpty("First Name", Edi_First_Name);
f &= Function.notEmpty("Last Name", Edi_Last_Name);
//check if image has been set
i = Function.imageNotSet(image_preview);
f &= i;
if(f == true){
//if everything is validated,talk to api.
String first_name, last_name, company_name, job_title, email, contact, address_one, address_two, town, county, postcode, country, account_email, rep_account_email, account_password, rep_account_password;
first_name = Function.getEditText(Edi_First_Name);
last_name = Function.getEditText(Edi_Last_Name);
//pass parameters so that we can call the register api via FUNCTIONS.java
Function.registerCall(first_name, last_name, "test_image");
}
else{
Toast.makeText(getApplicationContext(), "Error.", Toast.LENGTH_SHORT).show();
}
}
});
所以看一下代码,我如何将imagiv中的图像作为参数传递给registerCall函数?然后,此函数向API发送http请求。
有人能为我提供解决方案吗?
由于
答案 0 :(得分:0)
虽然我不熟悉PHP,但也许我可以指出你正确的方向。
首先,当用户从存储中选择他的图像时,不仅要使用它来设置ImageView的内容,还要保留图像的路径(例如作为活动的字段)。
然后,当应该调用api时 - 使用保存的文件路径。
您应该从here处理路径的方式(< - textFile
是您的路径。)