久久精品国产亚洲高清|精品日韩中文乱码在线|亚洲va中文字幕无码久|伊人久久综合狼伊人久久|亚洲不卡av不卡一区二区|精品久久久久久久蜜臀AV|国产精品19久久久久久不卡|国产男女猛烈视频在线观看麻豆

千鋒教育-做有情懷、有良心、有品質(zhì)的職業(yè)教育機構(gòu)

手機站
千鋒教育

千鋒學(xué)習(xí)站 | 隨時隨地免費學(xué)

千鋒教育

掃一掃進入千鋒手機站

領(lǐng)取全套視頻
千鋒教育

關(guān)注千鋒學(xué)習(xí)站小程序
隨時隨地免費學(xué)習(xí)課程

當(dāng)前位置:首頁  >  技術(shù)干貨  > kbone 高級-擴展dom/bom對象和API

kbone 高級-擴展dom/bom對象和API

來源:千鋒教育
發(fā)布人:qyf
時間: 2022-09-15 15:37:51 1663227471

  kbone 能夠滿足大多數(shù)常見的開發(fā)場景,但是當(dāng)遇到當(dāng)前 dom/bom 接口不能滿足的情況時,kbone 也提供了一系列 API 來擴展 dom/bom 對象和接口。

  這里需要注意的是,下述所有對于 dom/bom 對象的擴展都是針對所有頁面的,也就是說有一個頁面對其進行了擴展,所有頁面都會生效,因此在使用擴展時建議做好處理標(biāo)志,然后判斷是否已經(jīng)被擴展過。

  1、用法

  1.1 使用 window.$$extend 對 dom/bom 對象追加屬性/方法

  舉個例子,假設(shè)需要對 window.location 對象追加一個屬性 testStr 和一個方法 testFunc,可以編寫如下代碼:

  window.$$extend('window.location', {

  testStr: 'I am location',

  testFunc() {

  return `Hello, ${this.testStr}`

  },

  })

  這樣便可以通過 window.location.testStr 獲取新追加的屬性,同時可以通過 window.location.testFunc() 調(diào)用新追加的方法。

  1.2 使用 window.$$getPrototype 獲取 dom/bom 對象的原型

  如果遇到追加屬性和追加方法都無法滿足需求的情況下,可以獲取到對應(yīng)對象的原型進行操作:

  const locationPrototype = window.$$getPrototype('window.location')

  如上例子,locationPrototype 便是 window.location 對象的原型。

  1.3 對 dom/bom 對象方法追加前置/后置處理

  除了上述的給對象新增和覆蓋方法,還可以對已有的方法進行前置/后置處理。

  前置處理即表示此方法會在執(zhí)行原始方法之前執(zhí)行,后置處理則是在之后執(zhí)行。前置處理方法接收到的參數(shù)和原始方法接收到的參數(shù)一致,后置處理方法接收到的參數(shù)則是原始方法執(zhí)行后返回的結(jié)果。下面給一個簡單的例子:

  const beforeAspect = function(...args) {

  // 在執(zhí)行 window.location.testFunc 前被調(diào)用,args 為調(diào)用該方法時傳入的參數(shù)

  }

  const afterAspect = function(res) {

  // 在執(zhí)行 window.location.testFunc 后被調(diào)用,res 為該方法返回結(jié)果

  }

  window.$$addAspect('window.location.testFunc.before', beforeAspect)

  window.$$addAspect('window.location.testFunc.after', afterAspect)

  window.location.testFunc('abc', 123) // 會執(zhí)行 beforeAspect,再調(diào)用 testFunc,最后再執(zhí)行 afterAspect

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

  2、案例

  在 kbone-advanced 目錄下創(chuàng)建 07-extend-dom-bom 目錄,本案例在這個目錄下完成。

  2.1 創(chuàng)建 package.json

  cd 07-extend-dom-bom

  npm init -y

  編輯 package.json:

  {

  "name": "07-extend-dom-bom",

  "version": "1.0.0",

  "description": "",

  "main": "index.js",

  "scripts": {

  "build": "rimraf dist/web && cross-env NODE_ENV=production webpack --config build/webpack.config.js --progress --hide-modules",

  "mp": "cross-env NODE_ENV=production webpack --config build/webpack.mp.config.js --progress --hide-modules"

  },

  "dependencies": {

  "add": "^2.0.6",

  "vue": "^2.5.11"

  },

  "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",

  "cross-env": "^5.0.5",

  "css-loader": "^0.28.7",

  "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"

  },

  "keywords": [],

  "author": "",

  "license": "ISC"

  }

  安裝依賴包:

  npm install

  2.2 配置 webpack

  在 07-extend-dom-bom/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: {

  app: path.resolve(__dirname, '../src/main.mp.js'),

  page1: path.resolve(__dirname, '../src/page1/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']

  }

  },

  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': true, // 注入環(huán)境變量,用于業(yè)務(wù)代碼判斷

  }),

  new MiniCssExtractPlugin({

  filename: '[name].wxss',

  }),

  new VueLoaderPlugin(),

  new MpPlugin(require('./miniprogram.config.js')),

  ],

  }

  在 07-extend-dom-bom/build 目錄下創(chuàng)建 miniprogram.config.js,內(nèi)容如下:

  module.exports = {

  origin: 'https://test.miniprogram.com',

  entry: '/',

  router: {

  page1: ['/a']

  },

  redirect: {

  notFound: 'page1',

  accessDenied: 'page1',

  },

  generate: {

  // 構(gòu)建完成后是否自動安裝小程序依賴。'npm':使用 npm 自動安裝依賴

  autoBuildNpm: 'npm'

  },

  app: {

  navigationBarTitleText: 'miniprogram-project',

  },

  global: {

  share: true,

  rem: true

  },

  projectConfig: {

  appid: '',

  projectname: 'miniprogram-project',

  },

  packageConfig: {

  author: 'Felixlu',

  }

  }

  2.3 創(chuàng)建入口頁面

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

  import Vue from 'vue'

  import App from './App'

  export default function createApp() {

  const container = document.createElement('div')

  container.id = 'app'

  document.body.appendChild(container)

  // 例子一:使用 window.$$extend 對 dom/bom 對象追加屬性/方法

  window.$$extend('window.location', {

  testStr: 'I am location',

  testFunc() {

  console.log(`Hello, ${this.testStr}`)

  },

  })

  // 例子二:使用 window.$$getPrototype 獲取 dom/bom 對象的原型

  const locationPrototype = window.$$getPrototype('window.location')

  console.log(locationPrototype)

  // 例子三:對 dom/bom 對象方法追加前置/后置處理

  const beforeAspect = function(...args) {

  // 在執(zhí)行 window.location.testFunc 前被調(diào)用,args 為調(diào)用該方法時傳入的參數(shù)

  console.log('執(zhí)行 window.location.testFunc 前')

  }

  const afterAspect = function(res) {

  // 在執(zhí)行 window.location.testFunc 后被調(diào)用,res 為該方法返回結(jié)果

  console.log('執(zhí)行 window.location.testFunc 后')

  }

  window.$$addAspect('window.location.testFunc.before', beforeAspect)

  window.$$addAspect('window.location.testFunc.after', afterAspect)

  return new Vue({

  el: '#app',

  render: h => h(App)

  })

  }

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

<template>

  <div>

    我是 page1 頁面。

  </div>

</template>

 

<script>

export default {

  mounted() {

    window.location.testFunc()

  }

}

</script>

  2.4 創(chuàng)建 page1 相關(guān)文件

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

  import Vue from 'vue'

  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',

  render: h => h(App)

  })

  }

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

<template>

  <div>

    我是 page1 頁面。

  </div>

</template>

 

<script>

export default {

  mounted() {

    window.location.testFunc()

  }

}

</script>

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

  npm run mp

  主頁面:

圖片5

  點擊“進入page1頁面”:

圖片6


tags:
聲明:本站稿件版權(quán)均屬千鋒教育所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
10年以上業(yè)內(nèi)強師集結(jié),手把手帶你蛻變精英
請您保持通訊暢通,專屬學(xué)習(xí)老師24小時內(nèi)將與您1V1溝通
免費領(lǐng)取
今日已有369人領(lǐng)取成功
劉同學(xué) 138****2860 剛剛成功領(lǐng)取
王同學(xué) 131****2015 剛剛成功領(lǐng)取
張同學(xué) 133****4652 剛剛成功領(lǐng)取
李同學(xué) 135****8607 剛剛成功領(lǐng)取
楊同學(xué) 132****5667 剛剛成功領(lǐng)取
岳同學(xué) 134****6652 剛剛成功領(lǐng)取
梁同學(xué) 157****2950 剛剛成功領(lǐng)取
劉同學(xué) 189****1015 剛剛成功領(lǐng)取
張同學(xué) 155****4678 剛剛成功領(lǐng)取
鄒同學(xué) 139****2907 剛剛成功領(lǐng)取
董同學(xué) 138****2867 剛剛成功領(lǐng)取
周同學(xué) 136****3602 剛剛成功領(lǐng)取
相關(guān)推薦HOT
抖店入駐收費多少?開抖店費用是多少?

如果要開通抖音小店,需要先把抖音賬號開通商品櫥窗功能。入駐之后,可以選擇頭條賬號、抖音賬號、火山賬號任一類型注冊或登錄。那開個抖店要多...詳情>>

2023-09-19 07:50:26
想做直播帶貨的貨源哪里來?怎么找貨源?

現(xiàn)如今直播推廣的方式是非?;鸬模兄浅6嗟馁u家都是利用直播推廣店鋪產(chǎn)品,效果也是非常不錯。但很多賣家想要了解現(xiàn)在直播帶貨的話什么產(chǎn)品...詳情>>

2023-09-19 07:47:16
適合三農(nóng)領(lǐng)域的名字?有何技巧?

現(xiàn)在在抖音上很多博主會選擇直播來賺取更多的流量以及利潤,直播間的東西也有很多讓消費者信任并且喜歡的,而且隨著越來越多人直播,很多農(nóng)產(chǎn)品...詳情>>

2023-09-19 07:06:05
抖店商品發(fā)布違規(guī)怎么申訴?有何規(guī)則?

抖店服務(wù)市場服務(wù)商發(fā)布違禁信息如何處理?情節(jié)嚴(yán)重程度判定原則:違規(guī)嚴(yán)重等級主要通過服務(wù)商違規(guī)次數(shù)、造成后果的嚴(yán)重程度、獲利或?qū)е聯(lián)p失的...詳情>>

2023-09-19 06:59:55
“泛垂直起號”可能是2023年最高效的起號方式

這可能是明年最好用的旗號方式了,今天教大家一個很野,但是可以讓你三天漲1000粉的偏方。去年前年啊,每個人都教你,誰知七號對著自己的產(chǎn)品拍...詳情>>

2023-09-19 06:37:38
開班信息
北京校區(qū)
  • 北京校區(qū)
  • 大連校區(qū)
  • 廣州校區(qū)
  • 成都校區(qū)
  • 杭州校區(qū)
  • 長沙校區(qū)
  • 合肥校區(qū)
  • 南京校區(qū)
  • 上海校區(qū)
  • 深圳校區(qū)
  • 武漢校區(qū)
  • 鄭州校區(qū)
  • 西安校區(qū)
  • 青島校區(qū)
  • 重慶校區(qū)
  • 太原校區(qū)
  • 沈陽校區(qū)
  • 南昌校區(qū)
  • 哈爾濱校區(qū)