Ajax 图片上传

表单使用Ajax上传图片 HTML代码 <form id="up-form"> <input type="file" name="img" onchange="ajaxUp()" /> </form> Javascript代码 function ajaxUp() { var data = new FormData($("#up-form")[0]); var url = "upload.php"; $.ajax({ url: url, type: 'POST', data: data, async: false, cache: false, contentType: false, processData: false, dataType: "json", success: function (result)

Linux 快速清空文件内容

有时候日志文件过大了,删除了还需要重建,可能还需要重新赋予权限比较麻烦,所以可以清空文件内容,这样比较方便。 清空文件内容主要有三个方法 1. echo ""

-bash: brew: command not found

在使用brew的时候,提示错误 -bash: brew: command not found 解决方案 vim /etc/profilt 尾部添加 PATH=".;$PATH:/usr/local/bin" 执行命令 source /etc/profile 原因有可能是你新增的环境变量,但是未把之前的引入导致了无法使用。