当前位置:   article > 正文

【uni-app从入门到实战】环境搭建和配置学习_uniapp环境配置

uniapp环境配置

创建项目

原视频地址:Uni-App从入门到实战-黑马程序员杭州校区出品

前提:需要安装 HBuilderX微信开发者工具

用 HBuilderX 创建一个 uni-app 项目,选择默认模板,命名为 hello-uni 。我们先来运行下程序,可以运行到浏览器和微信开发者小程序。如果你不懂如何操作,可以查看:官方文档:运行uni-app

globalStyle全局外观配置

globalStyle 作用是设置默认页面的窗口表现。这里介绍几个常简设置项,更多详情可查看:pages.json页面路由——globalStyle

属性类型描述
navigationBarBackgroundColorHexColor导航栏背景颜色(同状态栏背景色)
navigationBarTextStyleString导航栏标题颜色及状态栏前景颜色,仅支持 black/white
navigationBarTitleTextString导航栏标题文字内容
backgroundColorHexColor下拉显示出来的窗口的背景色
enablePullDownRefreshBoolean是否开启下拉刷新,详见页面生命周期。
backgroundTextStyleString下拉 loading 的样式,仅支持 dark / light
onReachBottomDistanceNumber页面上拉触底事件触发时距页面底部距离,单位只支持px,详见页面生命周期

我们修改 pages.json 中的 globalStyle

"globalStyle": {
		"navigationBarTextStyle": "white",//标题栏文字颜色
		"navigationBarTitleText": "uni-app",//标题栏文字内容,pages.json中pages可单独设置页面标题栏内容
		"navigationBarBackgroundColor": "#1E90FF",//标题栏颜色
		"backgroundColor": "#87CEFA",//下拉刷新时背景颜色,只有开启下面的配置项才能下拉刷新
		"enablePullDownRefresh":true,//是否开启下拉刷新
		"backgroundTextStyle":"light"//下拉刷新三个点点的颜色
	},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

效果如下:
在这里插入图片描述

pages页面配置

pages 作用是设置页面路径及窗口表现,下面我们新建一个页面来学习这些配置,更多详情可查看:pages.json页面路由——pages

pages 中新建 message 目录,其中新建 message.vue

在这里插入图片描述

新建的时候要勾选在 pages.json 中注册,这样在 pages.json 中就会自动添加 message.vue 到 pages 设置项中,我们进行修改,把 message 的配置放到第一个,这样启动时就变成了首页。我们可以单独设置标题和背景颜色,同时增加 h5 的配置,这样我们在浏览器运行时会有单独的样式

"pages": [
		{
		    "path" : "pages/message/message",
		    "style" :                                                                                    
		    {
		        "navigationBarTitleText": "信息页",
		        "navigationBarBackgroundColor": "#FFA500",
				"h5": {
					"titleNView": {
						"backgroundColor": "#800080"
					}
				}
		    }
		    
		},
		{
			......
		}
    ],
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

运行在微信开发者小程序中,标题栏样式:
在这里插入图片描述
运行在浏览器的样式:
在这里插入图片描述

配置基本的tabbar

tabbar官方文档

我们在 globalStyle 同级下增加 tabBar 配置

"tabBar":{
		"color": "#222222",//未选中时文字颜色
		"selectedColor": "#1E90FF",//选中时文字颜色
		"backgroundColor": "#87CEFA",//背景色
		"borderStyle":"white",//上边框的颜色,可选值 black/white
		"list": [//tab 的列表,详见 list 属性说明,最少2个、最多5个 tab
			{
				"text": "首页",
				"pagePath": "pages/index/index",
				"iconPath": "static/tabs/index.png",
				"selectedIconPath": "static/tabs/index_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"
			}
		]
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

效果如下:
在这里插入图片描述
另外 tabbar 还有一个属性 :position 当设置为 top 时会显示到最上面, top 值仅微信小程序支持:
在这里插入图片描述

condition启动模式配置

启动模式配置,仅开发期间生效,用于模拟直达页面的场景,如:小程序转发后,用户点击所打开的页面。更多详情可以查看:condition官方文档

我们在 pages 下新建 detail 目录,在其中新建 detail.vue 文件,记得在 pages.json 的 pages 中注册。然后在 tabbar 同级增加 condition 配置项

"condition": {
		"current": 0,
		"list": [
			{
				"name": "详情页",//启动模式名称
				"path": "pages/detail/detail",//启动页面路径
				"query": "id=80"//启动参数,可在页面的 onLoad 函数里获得
			}
		]
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

运行到微信开发者工具后,点击普通编译这里,就会增加刚才添加的启动模式名称
在这里插入图片描述

点击后即可跳转刚增加的详情页,左下角可以查看传过来的参数

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/671979
推荐阅读