不囉嗦,直接看**
1.html:
<div
class
="con-item fix"
>
<
span
class
="f"
>文章封面<
sup
style
="color: red"
> *
sup>
span
>
<
div
class
="f con-item-img"
>
<
form
method
="post"
enctype
="multipart/form-data"
id="form_1"
action
="">
<
div
class
="upload-img"
>
<
i ng-show
="!infomodel.cover"
class
="ti-plus"
>
i>
<
img
ng-if
="infomodel.cover"
ng-src
="}"
/>
<
input
type
="file"
class
="btn-file"
id="input_1"
name
="file"
/>
div>
form
>
div>
div>
2.js封裝ajaxform:(用flag判斷是因為當頁面中有多個上傳按鈕時,讓每乙個form只初始化一次,如果不做判斷chenge事件和submit事件會繫結多次,結果就會提交多次)
var uploadimage =;var flag = true
;
for(var i = 0; i < this.inputidarr.length; i++)
}if(flag) //
相同的id只繫結一次事件
);
this
.inputidarr.push(inputid);
}var formflag = true
;
for(var j = 0; j < this.formidarr.length; j++)
}if(formflag)
);$("#" + formid).submit(function
());
this
.formidarr.push(formid);}},
}
3.呼叫方法
uploadfile: function() },
function(responsetext, statustext) })
}
4.注:專案使用了angular js和themify字型
java 上傳檔案到本地
上傳檔案 param source 原始檔的絕對路徑 param dis 目標檔案的路徑 param filetype 允許上傳的檔案型別列表 return public string uploadfile string source,string dis,listfiletype else fil...
上傳本地檔案到GitHub
前段時間將自己的專案通過命令列的方式上傳至github遇到一些問題,也總結了一些經驗,在這裡分享給大家乙個上傳步驟 第一步 建立你的git倉庫 命令列cd到你的專案資料夾裡面,執行git命令建立倉庫 git init第二步 選擇要新增進倉庫的檔案git add 如果想新增指定的檔案,就去掉.就ok了...
git 上傳本地檔案到github
git 上傳本地檔案到github 1 git config global user.name your real name 2 git config global user.email you email.address git init git add git commit m test git...