這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎么在TP5中使用bootstrap實現(xiàn)一個單圖上傳插件,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
為房山等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及房山網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、房山網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!1-引入js文件和css文件
<!--圖片上傳--> <link href="/public/static/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <link href="/public/static/css/fileinput.css" rel="external nofollow" media="all" rel="stylesheet" type="text/css" /> <script src="/public/static/js/jquery-2.0.3.min.js"></script> <script src="/public/static/js/fileinput.js" type="text/javascript"></script> <script src="/public/static/js/fileinput_locale_de.js" type="text/javascript"></script> <script src="/public/static/js/bootstrap.min.js" type="text/javascript"></script>
2-html代碼
<div class="form-group"> <label for="inputPassword3" class="col-sm-2 control-label">輪播圖</label> <div class="col-sm-10"> <input class="file" type="file" name="img"> </div> </div>
3-控制器
public function add() { $file = $request->file("img"); //聲明一個空的文件路徑 $imgPath = ""; //移動文件到框架應(yīng)用更目錄的public/uploads/ if ($file) { $info = $file->move(ROOT_PATH . 'public' . DS . 'upload' . DS . 'top_bar' . DS . date('Y') . DS . date('m-d'),md5(microtime(true))); if ($info) { $imgPath = "/public/upload/top_bar/" . date('Y') . '/' . date('m-d') . '/' . $info->getSaveName(); } } else { //錯誤提示用戶 return $this->error($file->getError()); } //賦值 $data["thumb_url"] = $imgPath; $dataId = Db::name('top_bar')->insertGetId($data); }
上述就是小編為大家分享的怎么在TP5中使用bootstrap實現(xiàn)一個單圖上傳插件了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
新聞標(biāo)題:怎么在TP5中使用bootstrap實現(xiàn)一個單圖上傳插件-創(chuàng)新互聯(lián)
網(wǎng)頁URL:http://www.rwnh.cn/article6/copiog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動網(wǎng)站建設(shè)、關(guān)鍵詞優(yōu)化、網(wǎng)站排名、網(wǎng)站營銷、自適應(yīng)網(wǎng)站、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容