Home> Web Front-end> uni-app> body text

How to set uniapp's tabbar in a mini program

PHPz
Release: 2023-04-20 15:18:54
Original
1933 people have browsed it

With the development of small programs, more and more people have joined the ranks of small program development. Uniapp is a cross-platform development tool that can achieve the effect of developing multiple terminals (including small programs) with one set of code. So, how to set the tabbar of uniapp in the mini program?

First of all, setting tabbar in uniapp needs to be configured in thepages.jsonfile. In the mini program, we need to first convert the tabbar option in thepages.jsonfile into the syntax of the mini program. Specifically, thetext,pagePath,iconPath, andselectedIconPathof each item in the list in the tabBar must be converted into The corresponding mini program syntax is as follows:

"tabBar": { "list": [ { "text": "首页", "iconPath": "static/img/tabbar/home.png", "selectedIconPath": "static/img/tabbar/home-active.png", "pagePath": "pages/index/index" }, { "text": "分类", "iconPath": "static/img/tabbar/cate.png", "selectedIconPath": "static/img/tabbar/cate-active.png", "pagePath": "pages/cate/cate" } ] }
Copy after login

Then, in the mini program page, we need to use theuni.getTabBar()method to get the tabbar object of the mini program, and then configure it according to the uniapp tabbar to make corresponding settings. The code is as follows:

 
Copy after login

In the above code,onShowis a hook function in the applet life cycle, which will be automatically called when the page is displayed in the applet. In this hook function, we obtain the tabbar object of the applet, and then set it according to the tabbar configured in uniapp.

Finally, the above settings need to be made in each page of the mini program. In order to avoid repeated code and unnecessary trouble, we can use the mixin feature provided by uniapp to encapsulate these settings into a mixin, and then reference it in the page that needs to be used. The specific code is as follows:

// tabBarMixin.js export default { onShow() { // 获取当前页面路径 let pages = getCurrentPages(); let currentPage = pages[pages.length - 1].route // 获取tabbar对象 let tabBar = uni.getTabBar(); // 遍历tabbar中的每一个tab,找到与当前页面路径匹配的tab tabBar.list.forEach((item, index) => { if (item.pagePath == currentPage) { // 设置当前tab的下标 tabBar.setSelectedItem({ index: index }); // 设置当前tab的文字 tabBar.setItemText({ index: index, text: item.text }); // 设置当前tab的图标 tabBar.setIcon({ index: index, iconPath: item.iconPath, selectedIconPath: item.selectedIconPath }); } }); } } // index.vue 
Copy after login

In the above code, we encapsulate all tabbar settings into a mixin, and then reference it in the page that needs to be used. The advantage of this is that it can avoid code duplication, and it can also conveniently and uniformly manage tabbar settings.

In summary, when uniapp sets the tabbar under the mini program, it needs to first convert the configuration in thepages.jsonfile into the syntax of the mini program, and then use ## in the mini program page. #uni.getTabBar()The method obtains the tabbar object and sets it according to the tabbar configured in uniapp. In order to avoid duplication of code, the tabbar settings can be encapsulated into a mixin and referenced in the pages that need to be used.

The above is the detailed content of How to set uniapp's tabbar in a mini program. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!