日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

m_Orchestrate learning system---六、善用组件插件的好处是什么

發(fā)布時間:2025/6/15 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 m_Orchestrate learning system---六、善用组件插件的好处是什么 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

m_Orchestrate learning system---六、善用組件插件的好處是什么

一、總結(jié)

一句話總結(jié):

?

1、面包屑導航是什么?

知道它是什么自然就知道它怎么用了

?

?

2、表格里面的欄目能能點擊的實質(zhì)是什么?

可點擊還是a標簽,而不是內(nèi)部設(shè)置的樣式

1 <thead> 2 <tr> 3 <th class="table-check"><input type="checkbox" class="tpl-table-fz-check"></th> 4 <th class="table-id">ID</th> 5 <th class="table-title">標題</th> 6 <th class="table-type">類別</th> 7 <th class="table-author am-hide-sm-only">作者</th> 8 <th class="table-date am-hide-sm-only">修改日期</th> 9 <th class="table-set">操作</th> 10 </tr> 11 </thead> 12 <tbody> 13 <tr> 14 <td><input type="checkbox"></td> 15 <td>1</td> 16 <td><a href="#">Business management</a></td> 17 <td>default</td> 18 <td class="am-hide-sm-only">測試1號</td> 19 <td class="am-hide-sm-only">2014年9月4日 7:28:47</td> 20 <td> 21 <div class="am-btn-toolbar"> 22 <div class="am-btn-group am-btn-group-xs"> 23 <button class="am-btn am-btn-default am-btn-xs am-text-secondary"><span class="am-icon-pencil-square-o"></span> 編輯</button> 24 <button class="am-btn am-btn-default am-btn-xs am-text-danger am-hide-sm-only"><span class="am-icon-trash-o"></span> 刪除</button> 25 </div> 26 </div> 27 </td> 28 </tr> 29 30 </tbody>

1、可點擊還是a標簽,而不是內(nèi)部設(shè)置的樣式

2、<th class="table-title">標題</th> 像這里面的table-title樣式我在官方文檔里面找不到,但是我可以去引入的css里面找,就知道它講的啥了

?

css里面也沒有找到,但是它的樣式明顯在這里

?

?

3、amaze ui的常用組件有哪些?

amazeui對這些常用的組件都進行了特別詳細的說明,使用只需要進行最基本的拼裝,用到的時候再看

先注意小徽章,評論 列表,圖標,縮略圖,文章頁

?

?

4、小徽章如何使用?

以bootstrap為例

項目中有用到

項目中實例

?

?

5、如何post方式傳值并且獲取值?

從post中獲取的id為字符串類型

從數(shù)據(jù)庫中取來數(shù)據(jù)的時候數(shù)據(jù)的類型和在數(shù)據(jù)庫中一樣,id還是int類型的

post從頁面?zhèn)鬟f過來的表單數(shù)據(jù)中的數(shù)組中的元素類型應該都是string類型無疑

所以從表單的數(shù)據(jù)庫的數(shù)據(jù)就是從string類型到達數(shù)據(jù)庫中的數(shù)據(jù)類型,這個其實insert完成的,因為insert插入語句中例如id還是為'1'還是string類型

所以得出結(jié)論:

從頁面?zhèn)鬟f過來的數(shù)據(jù)都是string類型,從數(shù)據(jù)庫拿出來的數(shù)據(jù)是數(shù)據(jù)庫中的類型

?

傳遞參數(shù)

1 <td> 2 <div class="am-btn-toolbar"> 3 <div class="am-btn-group am-btn-group-xs"> 4 <a href="{:url('discipline/edit')}"><button class="am-btn am-btn-default am-btn-xs am-text-secondary"><span class="am-icon-pencil-square-o"></span> Edit</button></a> 5 <a href="{:url('discipline/delete',array('id'=>$vo.id))}"><button class="am-btn am-btn-default am-btn-xs am-text-danger am-hide-sm-only"><span class="am-icon-trash-o"></span> Delete</button></a> 6 </div> 7 </div> 8 </td>

?

獲取參數(shù)

1 //刪除學科分類 2 public function delete(){ 3 //1、獲取從頁面?zhèn)鬟f過來的id 4 $id=input('id'); 5 dump($id);die; 6 //2、刪除數(shù)據(jù)庫傳遞過來的id數(shù)據(jù) 7 return view(); 8 }

?

結(jié)果

?

?

二、內(nèi)容在總結(jié)中

?

項目地址

fry404006308/m_Orchestrate: m_Orchestrate
https://github.com/fry404006308/m_Orchestrate

?

轉(zhuǎn)載于:https://www.cnblogs.com/Renyi-Fan/p/8930063.html

總結(jié)

以上是生活随笔為你收集整理的m_Orchestrate learning system---六、善用组件插件的好处是什么的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。