ポジローぽけっと

昨日より今日、今日より明日を信じて、トライトライ

2017-07-11から1日間の記事一覧

ajax requestへのresponseがステータス200なのに、persererrorでerror/failとなってしまったら

ajaxのdataTypeと実際のdataTypeが一致しているか確認する。 応答がない場合は、dataTypeは不要。 $.ajax({ url: "hoge.php", // リクエスト送信先URL type: "POST", data: {hoge:"hoge"} dataType: 'json' }) 参考 jQuery.ajax(options) - jQuery 日本語リファレ…

tarでディレクトリ直下をディレクトリを含めず圧縮したかったら

ディレクトリ直下をディレクトリを含めず圧縮したかったら tar czf hoge.tar.gz -C /path/to/directory . 解凍先ディレクトリを指定して解凍したかったら tar xzf hoge.tar.gz -C /path/to/directory 参考 gzip - How do I tar a directory of files and fol…