真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么用kbone實現(xiàn)跨頁面通信和跨頁面數(shù)據(jù)共享-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“怎么用kbone實現(xiàn)跨頁面通信和跨頁面數(shù)據(jù)共享”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

成都創(chuàng)新互聯(lián)主營尼金平網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),尼金平h5微信小程序開發(fā)搭建,尼金平網(wǎng)站營銷推廣歡迎尼金平等地區(qū)企業(yè)咨詢

1.1 在頁面中訂閱廣播消息

// 頁面1
window.$$subscribe('hello', data => {
   console.log('receive a msg: ', data)
})

1.2 在其他頁面中發(fā)布廣播消息

// 頁面2
window.$$publish('hello', 'I am june')

在訂閱了此消息的頁面則會輸出 receive a msg: I am june。

PS:如果需要取消訂閱消息,可以使用 window.$$unsubscribe 接口進行取消。
PS:頁面關(guān)閉后,會取消該頁面所有的訂閱。

如果需要跨頁面數(shù)據(jù)進行共享,可以使用 window.$$global 對象,所有頁面的 window.$$global 均會指向同一個對象:

// 頁面1
window.$$global.name = 'june'

// 頁面2
console.log(window.$$global.name) // 輸出 june

PS:具體 API 可參考 dom/bom 擴展 API 文檔。

2、案例

在 kbone-advanced 目錄下創(chuàng)建 08-share-message 目錄,本案例在這個目錄下完成。

2.1 創(chuàng)建 package.json

cd 08-share-message
npm init -y

編輯 package.json:

{
 "scripts": {
   "mp": "cross-env NODE_ENV=production webpack --config build/webpack.mp.config.js --progress --hide-modules"
 },
 "dependencies": {
   "vue": "^2.5.11",
   "vuex": "^3.1.3"
 },
 "browserslist": [
   "> 1%",
   "last 2 versions",
   "not ie <= 8"
 ],
 "devDependencies": {
   "babel-core": "^6.26.0",
   "babel-loader": "^7.1.2",
   "babel-preset-env": "^1.6.0",
   "babel-preset-stage-3": "^6.24.1",
   "cross-env": "^5.0.5",
   "css-loader": "^0.28.7",
   "extract-text-webpack-plugin": "^3.0.2",
   "file-loader": "^1.1.4",
   "html-webpack-plugin": "^4.0.0-beta.5",
   "mini-css-extract-plugin": "^0.5.0",
   "optimize-css-assets-webpack-plugin": "^5.0.1",
   "stylehacks": "^4.0.3",
   "vue-loader": "^15.7.0",
   "vue-template-compiler": "^2.6.10",
   "webpack": "^4.29.6",
   "webpack-cli": "^3.2.3",
   "mp-webpack-plugin": "latest"
 }
}

安裝依賴包:

npm install

2.2 配置 webpack

在 08-share-message/build 目錄下創(chuàng)建 webpack.mp.config.js,內(nèi)容如下:

const path = require('path')
const webpack = require('webpack')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const { VueLoaderPlugin } = require('vue-loader')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin')
const MpPlugin = require('mp-webpack-plugin') // 用于構(gòu)建小程序代碼的 webpack 插件

const isOptimize = false // 是否壓縮業(yè)務(wù)代碼,開發(fā)者工具可能無法完美支持業(yè)務(wù)代碼使用到的 es 特性,建議自己做代碼壓縮

module.exports = {
 mode: 'production',
 entry: {
   page1: path.resolve(__dirname, '../src/page1/main.mp.js'),
   page2: path.resolve(__dirname, '../src/page2/main.mp.js'),
   page3: path.resolve(__dirname, '../src/page3/main.mp.js'),
   page4: path.resolve(__dirname, '../src/page4/main.mp.js'),
 },
 output: {
   path: path.resolve(__dirname, '../dist/mp/common'), // 放到小程序代碼目錄中的 common 目錄下
   filename: '[name].js', // 必需字段,不能修改
   library: 'createApp', // 必需字段,不能修改
   libraryExport: 'default', // 必需字段,不能修改
   libraryTarget: 'window', // 必需字段,不能修改
 },
 target: 'web', // 必需字段,不能修改
 optimization: {
   runtimeChunk: false, // 必需字段,不能修改
   splitChunks: { // 代碼分隔配置,不建議修改
     chunks: 'all',
     minSize: 1000,
     maxSize: 0,
     minChunks: 1,
     maxAsyncRequests: 100,
     maxInitialRequests: 100,
     automaticNameDelimiter: '~',
     name: true,
     cacheGroups: {
       vendors: {
         test: /[\\/]node_modules[\\/]/,
         priority: -10
       },
       default: {
         minChunks: 2,
         priority: -20,
         reuseExistingChunk: true
       }
     }
   },

   minimizer: isOptimize ? [
     // 壓縮CSS
     new OptimizeCSSAssetsPlugin({
       assetNameRegExp: /\.(css|wxss)$/g,
       cssProcessor: require('cssnano'),
       cssProcessorPluginOptions: {
         preset: ['default', {
           discardComments: {
             removeAll: true,
           },
           minifySelectors: false, // 因為 wxss 編譯器不支持 .some>:first-child 這樣格式的代碼,所以暫時禁掉這個
         }],
       },
       canPrint: false
     }),
     // 壓縮 js
     new TerserPlugin({
       test: /\.js(\?.*)?$/i,
       parallel: true,
     })
   ] : [],
 },
 module: {
   rules: [
     {
       test: /\.css$/,
       use: [
         MiniCssExtractPlugin.loader,
         'css-loader'
       ],
     },
     {
       test: /\.vue$/,
       loader: [
         'vue-loader',
       ],
     },
     {
       test: /\.js$/,
       use: [{
         loader: 'babel-loader',
         options: {
           presets: ['env', 'stage-3'],
         },
       }],
       exclude: /node_modules/
     },
     {
       test: /\.(png|jpg|gif|svg)$/,
       loader: 'file-loader',
       options: {
         name: '[name].[ext]?[hash]'
       }
     }
   ]
 },
 resolve: {
   extensions: ['*', '.js', '.vue', '.json']
 },
 plugins: [
   new webpack.DefinePlugin({
     'process.env.isMiniprogram': process.env.isMiniprogram, // 注入環(huán)境變量,用于業(yè)務(wù)代碼判斷
   }),
   new MiniCssExtractPlugin({
     filename: '[name].wxss',
   }),
   new VueLoaderPlugin(),
   new MpPlugin(require('./miniprogram.config.js')),
 ],
}

在 08-share-message/build 目錄下創(chuàng)建 miniprogram.config.js,內(nèi)容如下:

module.exports = {    
   origin: 'https://test.miniprogram.com',    
   entry: '/',    
   router: {        
       page1: ['/'],
       page2: ['/page2'],
       page3: ['/page3'],
       page4: ['/page4'],
   },    
   redirect: {        
       notFound: 'page1',        
       accessDenied: 'page1',
 },
 generate: {
       // 構(gòu)建完成后是否自動安裝小程序依賴。'npm':使用 npm 自動安裝依賴
       autoBuildNpm: 'npm'
   },
   app: {
       navigationBarTitleText: 'miniprogram-project',
   },
   projectConfig: {
       appid: '',
   projectname: 'kbone-demo22',
   },
   packageConfig: {
       author: 'wechat-miniprogram',
   },
}

2.3 創(chuàng)建page1頁面

在 /src/ 下創(chuàng)建 page1 文件夾,在 page1 下創(chuàng)建 main.mp.js 文件,內(nèi)容如下:

import Vue 
from 'vue'
import {createStore} from '../store'
import App from './App.vue'

export default function createApp( ) {
 const container = document.createElement('div')
 container.id = 'app'
 document.body.appendChild(container)

 return new Vue({
   el: '#app',
   store: createStore(),
   render: h => h(App)
 })
}

在 /src/ 下創(chuàng)建 store 文件夾,在 store 下創(chuàng)建 index.js 文件,內(nèi)容如下:

import Vue 
from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export function createStore() {
 const state = window.$$global.state || {
   count: 0,
   data: {},
 }
 window.$$global.state = state

 return new Vuex.Store({
   state,
   actions: {
     FETCH_DATA: ({commit}, data) => {
       setTimeout(() => {
         commit('SET_DATA', data)
       }, 100)
     },
   },
   mutations: {
     SET_DATA: (state, data) => {
       state.count++
       Vue.set(state.data, 'name', data.name)
     },
   },
 });
}

在 /src/page1 下創(chuàng)建 App.vue 文件,內(nèi)容如下:






在 /src/ 下創(chuàng)建 common 文件夾,在 common 下創(chuàng)建 Header.vue 文件,內(nèi)容如下:






在 /src/common 下創(chuàng)建 Footer.vue 文件,內(nèi)容如下:






2.4 創(chuàng)建page2頁面

在 /src/ 下創(chuàng)建 page2 文件夾,在 page2 下創(chuàng)建 main.mp.js 文件,內(nèi)容如下:

import Vue 
from 'vue'
import {createStore} from '../store'
import App from './App.vue'

export default function createApp( ) {
 const container = document.createElement('div')
 container.id = 'app'
 document.body.appendChild(container)

 return new Vue({
   el: '#app',
   store: createStore(),
   render: h => h(App)
 })
}

在 /src/page2 下創(chuàng)建 App.js 文件,內(nèi)容如下:






2.5 創(chuàng)建page3頁面

在 /src/ 下創(chuàng)建 page3 文件夾,在 page3 下創(chuàng)建 main.mp.js 文件,內(nèi)容如下:

import Vue 
from 'vue'
import {createStore} from '../store'
import App from './App.vue'

export default function createApp( ) {
 const container = document.createElement('div')
 container.id = 'app'
 document.body.appendChild(container)

 return new Vue({
   el: '#app',
   store: createStore(),
   render: h => h(App)
 })
}

在 /src/page3 下創(chuàng)建 App.js 文件,內(nèi)容如下:






2.6 創(chuàng)建page4頁面

在 /src/ 下創(chuàng)建 page4 文件夾,在 page4 下創(chuàng)建 main.mp.js 文件,內(nèi)容如下:

import Vue 
from 'vue'
import {createStore} from '../store'
import App from './App.vue'

export default function createApp( ) {
 const container = document.createElement('div')
 container.id = 'app'
 document.body.appendChild(container)

 return new Vue({
   el: '#app',
   store: createStore(),
   render: h => h(App)
 })
}

在 /src/page4 下創(chuàng)建 App.js 文件,內(nèi)容如下:






2.7 小程序端效果預(yù)覽

npm run mp

怎么用kbone實現(xiàn)跨頁面通信和跨頁面數(shù)據(jù)共享

“怎么用kbone實現(xiàn)跨頁面通信和跨頁面數(shù)據(jù)共享”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


當(dāng)前題目:怎么用kbone實現(xiàn)跨頁面通信和跨頁面數(shù)據(jù)共享-創(chuàng)新互聯(lián)
URL鏈接:http://weahome.cn/article/cohogs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部