uni-app的基本使用
課程介紹:
基礎(chǔ)部分:
- 環(huán)境搭建
- 頁面外觀配置
- 數(shù)據(jù)綁定
- uni-app的生命周期
- 組件的使用
- uni-app中樣式學(xué)習(xí)
- 在uni-app中使用字體圖標(biāo)和開啟scss
- 條件注釋跨端兼容
- uni中的事件
- 導(dǎo)航跳轉(zhuǎn)
- 組件創(chuàng)建和通訊霞篡,及組件的生命周期
- uni-app中使用uni-ui庫(kù)
項(xiàng)目:黑馬商城項(xiàng)目
uni-app介紹 官方網(wǎng)頁
uni-app
是一個(gè)使用 Vue.js 開發(fā)所有前端應(yīng)用的框架窃页,開發(fā)者編寫一套代碼敷待,可發(fā)布到iOS笛厦、Android、H5、以及各種小程序(微信/支付寶/百度/頭條/QQ/釘釘)等多個(gè)平臺(tái)。
即使不跨端趟佃,uni-app
同時(shí)也是更好的小程序開發(fā)框架扇谣。
具有vue和微信小程序的開發(fā)經(jīng)驗(yàn),可快速上手uni-app
為什么要去學(xué)習(xí)uni-app闲昭?
相對(duì)開發(fā)者來說罐寨,減少了學(xué)習(xí)成本,因?yàn)橹粚W(xué)會(huì)uni-app之后序矩,即可開發(fā)出iOS鸯绿、Android、H5簸淀、以及各種小程序的應(yīng)用瓶蝴,不需要再去學(xué)習(xí)開發(fā)其他應(yīng)用的框架,相對(duì)公司而言租幕,也大大減少了開發(fā)成本舷手。
環(huán)境搭建
安裝編輯器HbuilderX 下載地址
HBuilderX是通用的前端開發(fā)工具,但為uni-app
做了特別強(qiáng)化劲绪。
下載App開發(fā)版男窟,可開箱即用
安裝微信開發(fā)者工具 下載地址
利用HbuilderX初始化項(xiàng)目
點(diǎn)擊HbuilderX菜單欄文件>項(xiàng)目>新建
-
選擇uni-app,填寫項(xiàng)目名稱,項(xiàng)目創(chuàng)建的目錄
[圖片上傳失敗...(image-230c15-1591922899459)]
運(yùn)行項(xiàng)目
在菜單欄中點(diǎn)擊運(yùn)行贾富,運(yùn)行到瀏覽器歉眷,選擇瀏覽器即可運(yùn)行
在微信開發(fā)者工具里運(yùn)行:進(jìn)入hello-uniapp項(xiàng)目,點(diǎn)擊工具欄的運(yùn)行 -> 運(yùn)行到小程序模擬器 -> 微信開發(fā)者工具祷安,即可在微信開發(fā)者工具里面體驗(yàn)uni-app
在微信開發(fā)者工具里運(yùn)行:進(jìn)入hello-uniapp項(xiàng)目,點(diǎn)擊工具欄的運(yùn)行 -> 運(yùn)行到手機(jī)或模擬器 -> 選擇調(diào)式的手機(jī)
注意:
- 如果是第一次使用兔乞,需要先配置小程序ide的相關(guān)路徑汇鞭,才能運(yùn)行成功
- 微信開發(fā)者工具在設(shè)置中安全設(shè)置,服務(wù)端口開啟
介紹項(xiàng)目目錄和文件作用
pages.json
文件用來對(duì) uni-app 進(jìn)行全局配置庸追,決定頁面文件的路徑霍骄、窗口樣式、原生的導(dǎo)航欄淡溯、底部的原生tabbar 等
manifest.json
文件是應(yīng)用的配置文件读整,用于指定應(yīng)用的名稱、圖標(biāo)咱娶、權(quán)限等米间。
App.vue
是我們的跟組件,所有頁面都是在App.vue
下進(jìn)行切換的膘侮,是頁面入口文件屈糊,可以調(diào)用應(yīng)用的生命周期函數(shù)。
main.js
是我們的項(xiàng)目入口文件琼了,主要作用是初始化vue
實(shí)例并使用需要的插件逻锐。
uni.scss
文件的用途是為了方便整體控制應(yīng)用的風(fēng)格。比如按鈕顏色、邊框風(fēng)格昧诱,uni.scss
文件里預(yù)置了一批scss變量預(yù)置晓淀。
unpackage
就是打包目錄,在這里有各個(gè)平臺(tái)的打包文件
pages
所有的頁面存放目錄
static
靜態(tài)資源目錄盏档,例如圖片等
components
組件存放目錄
為了實(shí)現(xiàn)多端兼容凶掰,綜合考慮編譯速度、運(yùn)行性能等因素妆丘,uni-app
約定了如下開發(fā)規(guī)范:
- 頁面文件遵循 Vue 單文件組件 (SFC) 規(guī)范
- 組件標(biāo)簽靠近小程序規(guī)范锄俄,詳見uni-app 組件規(guī)范
- 接口能力(JS API)靠近微信小程序規(guī)范,但需將前綴
wx
替換為uni
勺拣,詳見uni-app接口規(guī)范 - 數(shù)據(jù)綁定及事件處理同
Vue.js
規(guī)范奶赠,同時(shí)補(bǔ)充了App及頁面的生命周期 - 為兼容多端運(yùn)行,建議使用flex布局進(jìn)行開發(fā)
全局配置和頁面配置
通過globalStyle進(jìn)行全局配置
用于設(shè)置應(yīng)用的狀態(tài)欄药有、導(dǎo)航條毅戈、標(biāo)題、窗口背景色等愤惰。詳細(xì)文檔
屬性 | 類型 | 默認(rèn)值 | 描述 |
---|---|---|---|
navigationBarBackgroundColor | HexColor | #F7F7F7 | 導(dǎo)航欄背景顏色(同狀態(tài)欄背景色) |
navigationBarTextStyle | String | white | 導(dǎo)航欄標(biāo)題顏色及狀態(tài)欄前景顏色苇经,僅支持 black/white |
navigationBarTitleText | String | 導(dǎo)航欄標(biāo)題文字內(nèi)容 | |
backgroundColor | HexColor | #ffffff | 窗口的背景色 |
backgroundTextStyle | String | dark | 下拉 loading 的樣式,僅支持 dark / light |
enablePullDownRefresh | Boolean | false | 是否開啟下拉刷新宦言,詳見頁面生命周期扇单。 |
onReachBottomDistance | Number | 50 | 頁面上拉觸底事件觸發(fā)時(shí)距頁面底部距離,單位只支持px奠旺,詳見頁面生命周期 |
創(chuàng)建新的message頁面
右鍵pages新建message目錄蜘澜,在message目錄下右鍵新建.vue文件,并選擇基本模板
<template>
<view>
這是信息頁面
</view>
</template>
<script>
</script>
<style>
</style>
通過pages來配置頁面
屬性 | 類型 | 默認(rèn)值 | 描述 |
---|---|---|---|
path | String | 配置頁面路徑 | |
style | Object | 配置頁面窗口表現(xiàn),配置項(xiàng)參考 pageStyle |
pages數(shù)組數(shù)組中第一項(xiàng)表示應(yīng)用啟動(dòng)頁
"pages": [ 响疚、
{
"path":"pages/message/message"
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
}
]
通過style修改頁面的標(biāo)題和導(dǎo)航欄背景色鄙信,并且設(shè)置h5下拉刷新的特有樣式
"pages": [ //pages數(shù)組中第一項(xiàng)表示應(yīng)用啟動(dòng)頁,參考:https://uniapp.dcloud.io/collocation/pages
{
"path":"pages/message/message",
"style": {
"navigationBarBackgroundColor": "#007AFF",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true,
"disableScroll": true,
"h5": {
"pullToRefresh": {
"color": "#007AFF"
}
}
}
}
]
配置tabbar
如果應(yīng)用是一個(gè)多 tab 應(yīng)用忿晕,可以通過 tabBar 配置項(xiàng)指定 tab 欄的表現(xiàn)装诡,以及 tab 切換時(shí)顯示的對(duì)應(yīng)頁。
Tips
- 當(dāng)設(shè)置 position 為 top 時(shí)践盼,將不會(huì)顯示 icon
- tabBar 中的 list 是一個(gè)數(shù)組鸦采,只能配置最少2個(gè)、最多5個(gè) tab咕幻,tab 按數(shù)組的順序排序赖淤。
屬性說明:
屬性 | 類型 | 必填 | 默認(rèn)值 | 描述 | 平臺(tái)差異說明 |
---|---|---|---|---|---|
color | HexColor | 是 | tab 上的文字默認(rèn)顏色 | ||
selectedColor | HexColor | 是 | tab 上的文字選中時(shí)的顏色 | ||
backgroundColor | HexColor | 是 | tab 的背景色 | ||
borderStyle | String | 否 | black | tabbar 上邊框的顏色,僅支持 black/white | App 2.3.4+ 支持其他顏色值 |
list | Array | 是 | tab 的列表谅河,詳見 list 屬性說明咱旱,最少2個(gè)确丢、最多5個(gè) tab | ||
position | String | 否 | bottom | 可選值 bottom、top | top 值僅微信小程序支持 |
其中 list 接收一個(gè)數(shù)組吐限,數(shù)組中的每個(gè)項(xiàng)都是一個(gè)對(duì)象鲜侥,其屬性值如下:
屬性 | 類型 | 必填 | 說明 |
---|---|---|---|
pagePath | String | 是 | 頁面路徑,必須在 pages 中先定義 |
text | String | 是 | tab 上按鈕文字诸典,在 5+APP 和 H5 平臺(tái)為非必填描函。例如中間可放一個(gè)沒有文字的+號(hào)圖標(biāo) |
iconPath | String | 否 | 圖片路徑,icon 大小限制為40kb狐粱,建議尺寸為 81px * 81px舀寓,當(dāng) postion 為 top 時(shí),此參數(shù)無效肌蜻,不支持網(wǎng)絡(luò)圖片互墓,不支持字體圖標(biāo) |
selectedIconPath | String | 否 | 選中時(shí)的圖片路徑,icon 大小限制為40kb蒋搜,建議尺寸為 81px * 81px 篡撵,當(dāng) postion 為 top 時(shí),此參數(shù)無效 |
案例代碼:
"tabBar": {
"list": [
{
"text": "首頁",
"pagePath":"pages/index/index",
"iconPath":"static/tabs/home.png",
"selectedIconPath":"static/tabs/home-active.png"
},
{
"text": "信息",
"pagePath":"pages/message/message",
"iconPath":"static/tabs/message.png",
"selectedIconPath":"static/tabs/message-active.png"
},
{
"text": "我們",
"pagePath":"pages/contact/contact",
"iconPath":"static/tabs/contact.png",
"selectedIconPath":"static/tabs/contact-active.png"
}
]
}
condition啟動(dòng)模式配置
啟動(dòng)模式配置豆挽,僅開發(fā)期間生效育谬,用于模擬直達(dá)頁面的場(chǎng)景,如:小程序轉(zhuǎn)發(fā)后帮哈,用戶點(diǎn)擊所打開的頁面膛檀。
屬性說明:
屬性 | 類型 | 是否必填 | 描述 |
---|---|---|---|
current | Number | 是 | 當(dāng)前激活的模式,list節(jié)點(diǎn)的索引值 |
list | Array | 是 | 啟動(dòng)模式列表 |
list說明:
屬性 | 類型 | 是否必填 | 描述 |
---|---|---|---|
name | String | 是 | 啟動(dòng)模式名稱 |
path | String | 是 | 啟動(dòng)頁面路徑 |
query | String | 否 | 啟動(dòng)參數(shù)娘侍,可在頁面的 onLoad 函數(shù)里獲得 |
組件的基本使用
uni-app提供了豐富的基礎(chǔ)組件給開發(fā)者咖刃,開發(fā)者可以像搭積木一樣,組合各種組件拼接稱自己的應(yīng)用
uni-app中的組件私蕾,就像 HTML
中的 div
僵缺、p
胡桃、span
等標(biāo)簽的作用一樣踩叭,用于搭建頁面的基礎(chǔ)結(jié)構(gòu)
text文本組件的用法
001 - text 組件的屬性
屬性 | 類型 | 默認(rèn)值 | 必填 | 說明 |
---|---|---|---|---|
selectable | boolean | false | 否 | 文本是否可選 |
space | string | . | 否 | 顯示連續(xù)空格,可選參數(shù):ensp 翠胰、emsp 容贝、nbsp
|
decode | boolean | false | 否 | 是否解碼 |
-
text
組件相當(dāng)于行內(nèi)標(biāo)簽、在同一行顯示 - 除了文本節(jié)點(diǎn)以外的其他節(jié)點(diǎn)都無法長(zhǎng)按選中
002 - 代碼案例
<view>
<!-- 長(zhǎng)按文本是否可選 -->
<text selectable='true'>來了老弟</text>
</view>
<view>
<!-- 顯示連續(xù)空格的方式 -->
<view>
<text space='ensp'>來了 老弟</text>
</view>
<view>
<text space='emsp'>來了 老弟</text>
</view>
<view>
<text space='nbsp'>來了 老弟</text>
</view>
</view>
<view>
<text>skyblue</text>
</view>
<view>
<!-- 是否解碼 -->
<text decode='true'> < > & '    </text>
</view>
view視圖容器組件的用法
View 視圖容器之景, 類似于 HTML 中的 div
001 - 組件的屬性
[圖片上傳失敗...(image-985dd7-1591922899459)]
002 - 代碼案例
<view class="box2" hover-class="box2_active">
<view class='box1' hover-class='active' hover-stop-propagation :hover-start-time="2000" :hover-stay-time='2000'>
</view>
</view>
button按鈕組件的用法
001 - 組件的屬性
屬性名 | 類型 | 默認(rèn)值 | 說明 |
---|---|---|---|
size | String | default | 按鈕的大小 |
type | String | default | 按鈕的樣式類型 |
plain | Boolean | false | 按鈕是否鏤空斤富,背景色透明 |
disabled | Boolean | false | 是否按鈕 |
loading | Boolean | false | 名稱是否帶 loading t圖標(biāo) |
-
button
組件默認(rèn)獨(dú)占一行,設(shè)置size
為mini
時(shí)可以在一行顯示多個(gè)
002 - 案例代碼
<button size='mini' type='primary'>前端</button>
<button size='mini' type='default' disabled='true'>前端</button>
<button size='mini' type='warn' loading='true'>前端</button>
image組件的使用
image
圖片锻狗。
屬性名 | 類型 | 默認(rèn)值 | 說明 | 平臺(tái)差異說明 |
---|---|---|---|---|
src | String | 圖片資源地址 | ||
mode | String | 'scaleToFill' | 圖片裁剪满力、縮放的模式 |
Tips
-
<image>
組件默認(rèn)寬度 300px焕参、高度 225px; -
src
僅支持相對(duì)路徑油额、絕對(duì)路徑叠纷,支持 base64 碼; - 頁面結(jié)構(gòu)復(fù)雜潦嘶,css樣式太多的情況涩嚣,使用 image 可能導(dǎo)致樣式生效較慢,出現(xiàn) “閃一下” 的情況掂僵,此時(shí)設(shè)置
image{will-change: transform}
,可優(yōu)化此問題航厚。
uni-app中的樣式
rpx 即響應(yīng)式px,一種根據(jù)屏幕寬度自適應(yīng)的動(dòng)態(tài)單位锰蓬。以750寬的屏幕為基準(zhǔn)幔睬,750rpx恰好為屏幕寬度。屏幕變寬互妓,rpx 實(shí)際顯示效果會(huì)等比放大溪窒。
使用
@import
語句可以導(dǎo)入外聯(lián)樣式表,@import
后跟需要導(dǎo)入的外聯(lián)樣式表的相對(duì)路徑冯勉,用;
表示語句結(jié)束支持基本常用的選擇器class澈蚌、id、element等
在
uni-app
中不能使用*
選擇器灼狰。page
相當(dāng)于body
節(jié)點(diǎn)定義在 App.vue 中的樣式為全局樣式宛瞄,作用于每一個(gè)頁面。在 pages 目錄下 的 vue 文件中定義的樣式為局部樣式交胚,只作用在對(duì)應(yīng)的頁面份汗,并會(huì)覆蓋 App.vue 中相同的選擇器。
-
uni-app
支持使用字體圖標(biāo)蝴簇,使用方式與普通web
項(xiàng)目相同杯活,需要注意以下幾點(diǎn):字體文件小于 40kb,
uni-app
會(huì)自動(dòng)將其轉(zhuǎn)化為 base64 格式熬词;字體文件大于等于 40kb旁钧, 需開發(fā)者自己轉(zhuǎn)換,否則使用將不生效互拾;
-
字體文件的引用路徑推薦使用以 ~@ 開頭的絕對(duì)路徑歪今。
@font-face { font-family: test1-icon; src: url('~@/static/iconfont.ttf'); }
如何使用scss或者less
<style lang="less"></style>
uni-app中的數(shù)據(jù)綁定
在頁面中需要定義數(shù)據(jù),和我們之前的vue一摸一樣颜矿,直接在data中定義數(shù)據(jù)即可
export default {
data () {
return {
msg: 'hello-uni'
}
}
}
插值表達(dá)式的使用
-
利用插值表達(dá)式渲染基本數(shù)據(jù)
<view>{{msg}}</view>
-
在插值表達(dá)式中使用三元運(yùn)算
<view>{{ flag ? '我是真的':'我是假的' }}</view>
-
基本運(yùn)算
<view>{{1+1}}</view>
v-bind動(dòng)態(tài)綁定屬性
在data中定義了一張圖片寄猩,我們希望把這張圖片渲染到頁面上
export default {
data () {
return {
img: 'http://destiny001.gitee.io/image/monkey_02.jpg'
}
}
}
利用v-bind進(jìn)行渲染
<image v-bind:src="img"></image>
還可以縮寫成:
<image :src="img"></image>
v-for的使用
data中定以一個(gè)數(shù)組,最終將數(shù)組渲染到頁面上
data () {
return {
arr: [
{ name: '劉能', age: 29 },
{ name: '趙四', age: 39 },
{ name: '宋小寶', age: 49 },
{ name: '小沈陽', age: 59 }
]
}
}
利用v-for進(jìn)行循環(huán)
<view v-for="(item,i) in arr" :key="i">名字:{{item.name}}---年齡:{{item.age}}</view>
uni中的事件
事件綁定
在uni中事件綁定和vue中是一樣的骑疆,通過v-on進(jìn)行事件的綁定田篇,也可以簡(jiǎn)寫為@
<button @click="tapHandle">點(diǎn)我啊</button>
事件函數(shù)定義在methods中
methods: {
tapHandle () {
console.log('真的點(diǎn)我了')
}
}
事件傳參
-
默認(rèn)如果沒有傳遞參數(shù)替废,事件函數(shù)第一個(gè)形參為事件對(duì)象
// template <button @click="tapHandle">點(diǎn)我啊</button> // script methods: { tapHandle (e) { console.log(e) } }
-
如果給事件函數(shù)傳遞參數(shù)了,則對(duì)應(yīng)的事件函數(shù)形參接收的則是傳遞過來的數(shù)據(jù)
// template <button @click="tapHandle(1)">點(diǎn)我啊</button> // script methods: { tapHandle (num) { console.log(num) } }
-
如果獲取事件對(duì)象也想傳遞參數(shù)
// template <button @click="tapHandle(1,$event)">點(diǎn)我啊</button> // script methods: { tapHandle (num,e) { console.log(num,e) } }
uni的生命周期
應(yīng)用的生命周期
生命周期的概念:一個(gè)對(duì)象從創(chuàng)建泊柬、運(yùn)行舶担、銷毀的整個(gè)過程被成為生命周期。
生命周期函數(shù):在生命周期中每個(gè)階段會(huì)伴隨著每一個(gè)函數(shù)的觸發(fā)彬呻,這些函數(shù)被稱為生命周期函數(shù)
uni-app
支持如下應(yīng)用生命周期函數(shù):
函數(shù)名 | 說明 |
---|---|
onLaunch | 當(dāng)uni-app 初始化完成時(shí)觸發(fā)(全局只觸發(fā)一次) |
onShow | 當(dāng) uni-app 啟動(dòng)衣陶,或從后臺(tái)進(jìn)入前臺(tái)顯示 |
onHide | 當(dāng) uni-app 從前臺(tái)進(jìn)入后臺(tái) |
onError | 當(dāng) uni-app 報(bào)錯(cuò)時(shí)觸發(fā) |
頁面的生命周期
uni-app
支持如下頁面生命周期函數(shù):
函數(shù)名 | 說明 | 平臺(tái)差異說明 | 最低版本 |
---|---|---|---|
onLoad | 監(jiān)聽頁面加載,其參數(shù)為上個(gè)頁面?zhèn)鬟f的數(shù)據(jù)闸氮,參數(shù)類型為Object(用于頁面?zhèn)鲄ⅲ┘艨觯瑓⒖?a target="_blank">示例 | ||
onShow | 監(jiān)聽頁面顯示。頁面每次出現(xiàn)在屏幕上都觸發(fā)蒲跨,包括從下級(jí)頁面點(diǎn)返回露出當(dāng)前頁面 | ||
onReady | 監(jiān)聽頁面初次渲染完成译断。 | ||
onHide | 監(jiān)聽頁面隱藏 | ||
onUnload | 監(jiān)聽頁面卸載 |
下拉刷新
開啟下拉刷新
在uni-app中有兩種方式開啟下拉刷新
- 需要在
pages.json
里,找到的當(dāng)前頁面的pages節(jié)點(diǎn)或悲,并在style
選項(xiàng)中開啟enablePullDownRefresh
- 通過調(diào)用uni.startPullDownRefresh方法來開啟下拉刷新
通過配置文件開啟
創(chuàng)建list頁面進(jìn)行演示
<template>
<view>
杭州學(xué)科
<view v-for="(item,index) in arr" :key="index">
{{item}}
</view>
</view>
</template>
<script>
export default {
data () {
return {
arr: ['前端','java','ui','大數(shù)據(jù)']
}
}
}
</script>
<style>
</style>
通過pages.json文件中找到當(dāng)前頁面的pages節(jié)點(diǎn)孙咪,并在 style
選項(xiàng)中開啟 enablePullDownRefresh
{
"path":"pages/list/list",
"style":{
"enablePullDownRefresh": true
}
}
通過API開啟
uni.startPullDownRefresh()
監(jiān)聽下拉刷新
通過onPullDownRefresh可以監(jiān)聽到下拉刷新的動(dòng)作
export default {
data () {
return {
arr: ['前端','java','ui','大數(shù)據(jù)']
}
},
methods: {
startPull () {
uni.startPullDownRefresh()
}
},
onPullDownRefresh () {
console.log('觸發(fā)下拉刷新了')
}
}
關(guān)閉下拉刷新
uni.stopPullDownRefresh()
停止當(dāng)前頁面下拉刷新。
案例演示
<template>
<view>
<button type="primary" @click="startPull">開啟下拉刷新</button>
杭州學(xué)科
<view v-for="(item,index) in arr" :key="index">
{{item}}
</view>
</view>
</template>
<script>
export default {
data () {
return {
arr: ['前端','java','ui','大數(shù)據(jù)']
}
},
methods: {
startPull () {
uni.startPullDownRefresh()
}
},
onPullDownRefresh () {
this.arr = []
setTimeout(()=> {
this.arr = ['前端','java','ui','大數(shù)據(jù)']
uni.stopPullDownRefresh()
}, 1000);
}
}
</script>
上拉加載
通過在pages.json文件中找到當(dāng)前頁面的pages節(jié)點(diǎn)下style中配置onReachBottomDistance可以設(shè)置距離底部開啟加載的距離巡语,默認(rèn)為50px
通過onReachBottom監(jiān)聽到觸底的行為
<template>
<view>
<button type="primary" @click="startPull">開啟下拉刷新</button>
杭州學(xué)科
<view v-for="(item,index) in arr" :key="index">
{{item}}
</view>
</view>
</template>
<script>
export default {
data () {
return {
arr: ['前端','java','ui','大數(shù)據(jù)','前端','java','ui','大數(shù)據(jù)']
}
},
onReachBottom () {
console.log('觸底了')
}
}
</script>
<style>
view{
height: 100px;
line-height: 100px;
}
</style>
網(wǎng)絡(luò)請(qǐng)求
在uni中可以調(diào)用uni.request方法進(jìn)行請(qǐng)求網(wǎng)絡(luò)請(qǐng)求
需要注意的是:在小程序中網(wǎng)絡(luò)相關(guān)的 API 在使用前需要配置域名白名單翎蹈。
發(fā)送get請(qǐng)求
<template>
<view>
<button @click="sendGet">發(fā)送請(qǐng)求</button>
</view>
</template>
<script>
export default {
methods: {
sendGet () {
uni.request({
url: 'http://localhost:8082/api/getlunbo',
success(res) {
console.log(res)
}
})
}
}
}
</script>
發(fā)送post請(qǐng)求
數(shù)據(jù)緩存
uni.setStorage
將數(shù)據(jù)存儲(chǔ)在本地緩存中指定的 key 中,會(huì)覆蓋掉原來該 key 對(duì)應(yīng)的內(nèi)容男公,這是一個(gè)異步接口荤堪。
代碼演示
<template>
<view>
<button type="primary" @click="setStor">存儲(chǔ)數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
methods: {
setStor () {
uni.setStorage({
key: 'id',
data: 100,
success () {
console.log('存儲(chǔ)成功')
}
})
}
}
}
</script>
<style>
</style>
uni.setStorageSync
將 data 存儲(chǔ)在本地緩存中指定的 key 中,會(huì)覆蓋掉原來該 key 對(duì)應(yīng)的內(nèi)容枢赔,這是一個(gè)同步接口澄阳。
代碼演示
<template>
<view>
<button type="primary" @click="setStor">存儲(chǔ)數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
methods: {
setStor () {
uni.setStorageSync('id',100)
}
}
}
</script>
<style>
</style>
uni.getStorage
從本地緩存中異步獲取指定 key 對(duì)應(yīng)的內(nèi)容。
代碼演示
<template>
<view>
<button type="primary" @click="getStorage">獲取數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
data () {
return {
id: ''
}
},
methods: {
getStorage () {
uni.getStorage({
key: 'id',
success: res=>{
this.id = res.data
}
})
}
}
}
</script>
uni.getStorageSync
從本地緩存中同步獲取指定 key 對(duì)應(yīng)的內(nèi)容踏拜。
代碼演示
<template>
<view>
<button type="primary" @click="getStorage">獲取數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
methods: {
getStorage () {
const id = uni.getStorageSync('id')
console.log(id)
}
}
}
</script>
uni.removeStorage
從本地緩存中異步移除指定 key碎赢。
代碼演示
<template>
<view>
<button type="primary" @click="removeStorage">刪除數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
methods: {
removeStorage () {
uni.removeStorage({
key: 'id',
success: function () {
console.log('刪除成功')
}
})
}
}
}
</script>
uni.removeStorageSync
從本地緩存中同步移除指定 key。
代碼演示
<template>
<view>
<button type="primary" @click="removeStorage">刪除數(shù)據(jù)</button>
</view>
</template>
<script>
export default {
methods: {
removeStorage () {
uni.removeStorageSync('id')
}
}
}
</script>
上傳圖片速梗、預(yù)覽圖片
上傳圖片
uni.chooseImage方法從本地相冊(cè)選擇圖片或使用相機(jī)拍照肮塞。
案例代碼
<template>
<view>
<button @click="chooseImg" type="primary">上傳圖片</button>
<view>
<image v-for="item in imgArr" :src="item" :key="index"></image>
</view>
</view>
</template>
<script>
export default {
data () {
return {
imgArr: []
}
},
methods: {
chooseImg () {
uni.chooseImage({
count: 9,
success: res=>{
this.imgArr = res.tempFilePaths
}
})
}
}
}
</script>
預(yù)覽圖片
結(jié)構(gòu)
<view>
<image v-for="item in imgArr" :src="item" @click="previewImg(item)" :key="item"></image>
</view>
預(yù)覽圖片的方法
previewImg (current) {
uni.previewImage({
urls: this.imgArr,
current
})
}
條件注釋實(shí)現(xiàn)跨段兼容
條件編譯是用特殊的注釋作為標(biāo)記,在編譯時(shí)根據(jù)這些特殊的注釋镀琉,將注釋里面的代碼編譯到不同平臺(tái)峦嗤。
寫法:以 #ifdef 加平臺(tái)標(biāo)識(shí) 開頭蕊唐,以 #endif 結(jié)尾屋摔。
平臺(tái)標(biāo)識(shí)
值 | 平臺(tái) | 參考文檔 |
---|---|---|
APP-PLUS | 5+App | HTML5+ 規(guī)范 |
H5 | H5 | |
MP-WEIXIN | 微信小程序 | 微信小程序 |
MP-ALIPAY | 支付寶小程序 | 支付寶小程序 |
MP-BAIDU | 百度小程序 | 百度小程序 |
MP-TOUTIAO | 頭條小程序 | 頭條小程序 |
MP-QQ | QQ小程序 | (目前僅cli版支持) |
MP | 微信小程序/支付寶小程序/百度小程序/頭條小程序/QQ小程序 |
組件的條件注釋
代碼演示
<!-- #ifdef H5 -->
<view>
h5頁面會(huì)顯示
</view>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<view>
微信小程序會(huì)顯示
</view>
<!-- #endif -->
<!-- #ifdef APP-PLUS -->
<view>
app會(huì)顯示
</view>
<!-- #endif -->
api的條件注釋
代碼演示
onLoad () {
//#ifdef MP-WEIXIN
console.log('微信小程序')
//#endif
//#ifdef H5
console.log('h5頁面')
//#endif
}
樣式的條件注釋
代碼演示
/* #ifdef H5 */
view{
height: 100px;
line-height: 100px;
background: red;
}
/* #endif */
/* #ifdef MP-WEIXIN */
view{
height: 100px;
line-height: 100px;
background: green;
}
/* #endif */
uni中的導(dǎo)航跳轉(zhuǎn)
利用navigator進(jìn)行跳轉(zhuǎn)
navigator詳細(xì)文檔:文檔地址
跳轉(zhuǎn)到普通頁面
<navigator url="/pages/about/about" hover-class="navigator-hover">
<button type="default">跳轉(zhuǎn)到關(guān)于頁面</button>
</navigator>
跳轉(zhuǎn)到tabbar頁面
<navigator url="/pages/message/message" open-type="switchTab">
<button type="default">跳轉(zhuǎn)到message頁面</button>
</navigator>
利用編程式導(dǎo)航進(jìn)行跳轉(zhuǎn)
利用navigateTo進(jìn)行導(dǎo)航跳轉(zhuǎn)
保留當(dāng)前頁面,跳轉(zhuǎn)到應(yīng)用內(nèi)的某個(gè)頁面替梨,使用uni.navigateBack
可以返回到原頁面钓试。
<button type="primary" @click="goAbout">跳轉(zhuǎn)到關(guān)于頁面</button>
通過navigateTo方法進(jìn)行跳轉(zhuǎn)到普通頁面
goAbout () {
uni.navigateTo({
url: '/pages/about/about',
})
}
通過switchTab跳轉(zhuǎn)到tabbar頁面
跳轉(zhuǎn)到tabbar頁面
<button type="primary" @click="goMessage">跳轉(zhuǎn)到message頁面</button>
通過switchTab方法進(jìn)行跳轉(zhuǎn)
goMessage () {
uni.switchTab({
url: '/pages/message/message'
})
}
redirectTo進(jìn)行跳轉(zhuǎn)
關(guān)閉當(dāng)前頁面装黑,跳轉(zhuǎn)到應(yīng)用內(nèi)的某個(gè)頁面。
<!-- template -->
<button type="primary" @click="goMessage">跳轉(zhuǎn)到message頁面</button>
<!-- js -->
goMessage () {
uni.switchTab({
url: '/pages/message/message'
})
}
通過onUnload測(cè)試當(dāng)前組件確實(shí)卸載
onUnload () {
console.log('組件卸載了')
}
導(dǎo)航跳轉(zhuǎn)傳遞參數(shù)
在導(dǎo)航進(jìn)行跳轉(zhuǎn)到下一個(gè)頁面的同時(shí)弓熏,可以給下一個(gè)頁面?zhèn)鬟f相應(yīng)的參數(shù)恋谭,接收參數(shù)的頁面可以通過onLoad生命周期進(jìn)行接收
傳遞參數(shù)的頁面
goAbout () {
uni.navigateTo({
url: '/pages/about/about?id=80',
});
}
接收參數(shù)的頁面
<script>
export default {
onLoad (options) {
console.log(options)
}
}
</script>
uni-app中組件的創(chuàng)建
在uni-app中,可以通過創(chuàng)建一個(gè)后綴名為vue的文件挽鞠,即創(chuàng)建一個(gè)組件成功疚颊,其他組件可以將該組件通過impot的方式導(dǎo)入,在通過components進(jìn)行注冊(cè)即可
-
創(chuàng)建login組件信认,在component中創(chuàng)建login目錄材义,然后新建login.vue文件
<template> <view> 這是一個(gè)自定義組件 </view> </template> <script> </script> <style> </style>
-
在其他組件中導(dǎo)入該組件并注冊(cè)
import login from "@/components/test/test.vue"
-
注冊(cè)組件
components: {test}
-
使用組件
<test></test>
組件的生命周期函數(shù)
beforeCreate | 在實(shí)例初始化之后被調(diào)用。詳見 | ||
---|---|---|---|
created | 在實(shí)例創(chuàng)建完成后被立即調(diào)用嫁赏。詳見 | ||
beforeMount | 在掛載開始之前被調(diào)用其掂。詳見 | ||
mounted | 掛載到實(shí)例上去之后調(diào)用。詳見 注意:此處并不能確定子組件被全部掛載潦蝇,如果需要子組件完全掛載之后在執(zhí)行操作可以使用$nextTick Vue官方文檔
|
||
beforeUpdate | 數(shù)據(jù)更新時(shí)調(diào)用款熬,發(fā)生在虛擬 DOM 打補(bǔ)丁之前。詳見 | 僅H5平臺(tái)支持 | |
updated | 由于數(shù)據(jù)更改導(dǎo)致的虛擬 DOM 重新渲染和打補(bǔ)丁攘乒,在這之后會(huì)調(diào)用該鉤子贤牛。詳見 | 僅H5平臺(tái)支持 | |
beforeDestroy | 實(shí)例銷毀之前調(diào)用。在這一步则酝,實(shí)例仍然完全可用盔夜。詳見 | ||
destroyed | Vue 實(shí)例銷毀后調(diào)用。調(diào)用后堤魁,Vue 實(shí)例指示的所有東西都會(huì)解綁定喂链,所有的事件監(jiān)聽器會(huì)被移除,所有的子實(shí)例也會(huì)被銷毀妥泉。詳見 |
組件的通訊
父組件給子組件傳值
通過props來接受外界傳遞到組件內(nèi)部的值
<template>
<view>
這是一個(gè)自定義組件 {{msg}}
</view>
</template>
<script>
export default {
props: ['msg']
}
</script>
<style>
</style>
其他組件在使用login組件的時(shí)候傳遞值
<template>
<view>
<test :msg="msg"></test>
</view>
</template>
<script>
import test from "@/components/test/test.vue"
export default {
data () {
return {
msg: 'hello'
}
},
components: {test}
}
</script>
子組件給父組件傳值
通過$emit觸發(fā)事件進(jìn)行傳遞參數(shù)
<template>
<view>
這是一個(gè)自定義組件 {{msg}}
<button type="primary" @click="sendMsg">給父組件傳值</button>
</view>
</template>
<script>
export default {
data () {
return {
status: '打籃球'
}
},
props: {
msg: {
type: String,
value: ''
}
},
methods: {
sendMsg () {
this.$emit('myEvent',this.status)
}
}
}
</script>
父組件定義自定義事件并接收參數(shù)
<template>
<view>
<test :msg="msg" @myEvent="getMsg"></test>
</view>
</template>
<script>
import test from "@/components/test/test.vue"
export default {
data () {
return {
msg: 'hello'
}
},
methods: {
getMsg (res) {
console.log(res)
}
},
components: {test}
}
</script>
兄弟組件通訊
brother-big
<template>
<view>
<view>我是大哥</view>
<button type="primary" size="mini" @click="sendMyBrotherSmall">傳遞我的老弟</button>
</view>
</template>
<script>
export default{
methods:{
sendMyBrotherSmall(){
uni.$emit("updateNum",100)
}
}
}
</script>
<style>
</style>
brother-small
<template>
<view>
<view>我是小弟</view>
<text>{{num}}</text>
</view>
</template>
<script>
export default{
data(){
return{
num:0
}
},
created() {
uni.$on("updateNum",num=>{
this.num+=num;
})
}
}
</script>
<style>
</style>
引用這個(gè)兩個(gè)組件的父類
<template>
<view class="container">
<brotherbig></brotherbig>
<brothersmall></brothersmall>
</view>
</template>
<script>
import brotherbig from "@/components/brother-big/brother-big.vue"
import brothersmall from "@/components/brother-small/brother-small.vue"
export default {
components: {
brotherbig,
brothersmall
}
}
</script>
<style>
.container {
padding: 20px;
font-size: 14px;
line-height: 24px;
}
</style>
uni-ui的使用
1椭微、進(jìn)入Grid宮格組件
2、使用HBuilderX導(dǎo)入該組件
3盲链、導(dǎo)入該組件
import uniGrid from "@/components/uni-grid/uni-grid.vue"
import uniGridItem from "@/components/uni-grid-item/uni-grid-item.vue"
4蝇率、注冊(cè)組件
components: {uniGrid,uniGridItem}
5、使用組件
<uni-grid :column="3">
<uni-grid-item>
<text class="text">文本</text>
</uni-grid-item>
<uni-grid-item>
<text class="text">文本</text>
</uni-grid-item>
<uni-grid-item>
<text class="text">文本</text>
</uni-grid-item>
</uni-grid>