Uploading an mp3 to my (php based) web server from

2019-09-08 16:10发布

I'm looking to upload an mp3 file from my iPhone app to a given php page. To do this I found the ASIFormDataRequest class. Now I made a piece of code in my app like so:

NSLog(@"fastBackwardButtonLoosened - sending the stuff");
NSString *theUrl = @"MyServerURL";//Sorry not showing this:)
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:theUrl]];

[request setFile:[soundFileURL absoluteString] forKey:@"mainfile"];
[request startSynchronous];
NSLog(@"The request was sent!!");

However I cant figure out how to put my NSURL wich points to the mp3 inside this request. I have tried the above, but couldnt find anything that points me in the right direction.. Any ideas?

The code that receives the request is like so:

$SafeFile = $HTTP_POST_FILES['mainfile']['name'];
$uploaddir = "uploads/";
$path = $uploaddir.$SafeFile;

if($mainfile != none){ //AS LONG AS A FILE WAS SELECTED...

    if(copy($HTTP_POST_FILES['mainfile']['tmp_name'], $path)){ //IF IT HAS BEEN COPIED...
        //Good
    } else {
        //Bad
    }
}

Any help would be appreciated :)

1条回答
兄弟一词,经得起流年.
2楼-- · 2019-09-08 16:56

Here:

[request setFile:[soundFileURL absoluteString] forKey:@"mainfile"];

I think you should use [soundFileURL path] instead of [soundFileURL absoluteString], as [request setFile:] expects a filepath, not a full URL.

查看更多
登录 后发表回答