溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Taro實現(xiàn)微信小程序音樂

發(fā)布時間:2020-03-02 14:55:17 來源:網(wǎng)絡(luò) 閱讀:426 作者:專注地一哥 欄目:移動開發(fā)

Taro簡介

Taro 是一套遵循 React 語法規(guī)范的 多端開發(fā) 解決方案。使用 Taro,我們可以只書寫一套代碼,再通過 Taro 的編譯工具,將源代碼分別編譯出可以在不同端(微信小程序、H5、RN 等)運行的代碼,組件可以使用TaroTaro-ui(摘至官網(wǎng))

?

Taro-ui

Taro-ui是一款基于 Taro 框架開發(fā)的多端 UI 組件庫,里面的一些組件還是挺好用的,也挺好看的,官網(wǎng)很詳細而且還有效果圖提供觀看和體驗。

?

React

React的話跟著官網(wǎng)走一遍基本就能開發(fā)了,看了react以后還是覺得自己喜歡vue多一點

?

項目流程

npm install -g @tarojs/cli

taro init myApp

npm run dev:weapp

?

開發(fā)小程序注意事項

(摘自官網(wǎng))若使用 微信小程序預(yù)覽模式 ,則需下載并使用微信開發(fā)者工具添加項目進行預(yù)覽,此時需要注意微信開發(fā)者工具的項目設(shè)置

?

需要設(shè)置關(guān)閉 ES6 轉(zhuǎn) ES5 功能,開啟可能報錯

需要設(shè)置關(guān)閉上傳代碼時樣式自動補全,開啟可能報錯

需要設(shè)置關(guān)閉代碼壓縮上傳,開啟可能報錯

還有一些其他問題需要注意的,這里基本都指出了,我在實際開發(fā)中好像也沒遇到過里面提及過的問題(?)

?

app.jsx

import Taro, { Component } from '@tarojs/taro'

import Index from './pages/index'

import { View, Text,Image } from '@tarojs/components'

import './app.less'

import 'taro-ui/dist/style/index.scss'

?

// 如果需要在 h6 環(huán)境中開啟 React Devtools

// 取消以下注釋:

// if (process.env.NODE_ENV !== 'production' && process.env.TARO_ENV === 'h6') ?{

// ??require('nerv-devtools')

// }

?

class App extends Component {

?

??config = {

??????pages: [

????????'pages/music/index',

????????'pages/index/index',

????????'pages/classify/index',

????????'pages/user/index',

????????'pages/videoPlay/index',

????????'pages/music/hotSinger/index',

????????'pages/music/singerSong/index',

????????'pages/music/albumList/index',

????????'pages/classify/playlist/index',

????????'pages/player/index',

????????'pages/recommendMv/index',

????????'pages/songMenu/index',

????],

????window: {

??????backgroundTextStyle: 'light',

??????navigationBarBackgroundColor: '#d43c33',

??????navigationBarTitleText: 'WeChat',

??????navigationBarTextStyle: 'white'

????},

????tabBar: {

????????color: "#666",

????????selectedColor: "#b4282d",

????????backgroundColor: "#fafafa",

????????borderStyle: 'black',

????????list: [

????????????{

????????????pagePath: "pages/music/index",

????????????iconPath: "./assets/tab-bar/yinyue1.png",

????????????selectedIconPath: "./assets/tab-bar/yinyue.png",

????????????text: "音樂"

????????????}, {

????????????pagePath: "pages/classify/index",

????????????iconPath: "./assets/tab-bar/icon1.png",

????????????selectedIconPath: "./assets/tab-bar/icon.png",

????????????text: "分類"

????????????}

????????????, {

????????????pagePath: "pages/index/index",

????????????iconPath: "./assets/tab-bar/sousuo1.png",

? ? ? ? ? ? ? ? function(){ //手數(shù)?http://www.fx61.com/faq/muniu/426.html?

????????????selectedIconPath: "./assets/tab-bar/sousuo.png",

????????????text: "搜索"

????????????}

????????????// , {

????????????// pagePath: "pages/user/index",

????????????// iconPath: "./assets/tab-bar/geren1.png",

????????????// selectedIconPath: "./assets/tab-bar/geren.png",

????????????// text: "個人"

????????????// }

????????]

????},

????requiredBackgroundModes:['audio']

??}

?

??componentDidMount () {}

?

??componentDidShow () {}

?

??componentDidHide () {}

?

??componentDidCatchError () {}

?

??// App 類中的 render() 函數(shù)沒有實際作用

??// 請勿修改此函數(shù)

????render () {

????????return (

????????????<Index />

????????)

????}

}

?

Taro.render(<App />, document.getElementById('app'))

?

因為Taro.getBackgroundAudioManager()只支持微信小程序,所以打包成H5失效


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI