此html表单的等效Curl调用

此html表单的等效Curl调用,curl,Curl,我有以下html表单: <form method="post" action="http://api.website.com/upload/index.php" enctype="multipart/form-data"> <input type="text" name="myhandle" /> <input type="file" name="file" /> <input type="submit" value="submit" /> <

我有以下html表单:

<form method="post" action="http://api.website.com/upload/index.php" enctype="multipart/form-data">
<input type="text" name="myhandle" />
<input type="file" name="file" />
<input type="submit" value="submit" />
</form>
但我一直在犯这样的错误:

curl: (26) failed creating formpost data
我想出来了

curl --form file=@1.jpg --form myhandle=helloworld http://api.website.com/upload/index.php
curl --form file=@1.jpg --form myhandle=helloworld http://api.website.com/upload/index.php