0
C++を使用してCGIプログラムを作成しましたが、multipart/form-data
を使用して暗号化されたデータは取得されません。multipart/form-dataのフォームからデータを取得できませんでした
char delim (10); // the delimiter
std::string inps; // will store the result
while (std::getline(std::cin, inps, delim)) { /* do nothing? just read the input in loop */ }
// then this will interpret the result.
私はx-www-urlencoded
を使用してみました、それが動作しますが、それはフォームの入力を受け取ることができます:ここで私は一言で言えば、それを実行しようとしました方法です。しかし、何とかそれはmultipart/form-data
で何も読まないでしょう。
すぐにもう一度確認します。 ;) –