翼度科技»论坛 编程开发 JavaScript 查看内容

bindview.js 的使用

2

主题

2

帖子

6

积分

新手上路

Rank: 1

积分
6
快速入门

1. 创建第一个应用

由于该库还不支持 src 引入,接下来的例子我将在 webpack 环境下演示,webpack 模板 已经配置完毕,可直接下载使用
创建一个应用可用通过 new 来创建实例或通过提供的  createApp 方法来创建下面我将分别演示

  • 通过 new 来创建 App , el 配置项用来选择 DOM 被渲染到那个节点下, render 方法返回一个虚拟 DOM ,h 函数可以创建一个虚拟 DOM,render 返回的虚拟 DOM 将被转换为真实 DOM 并添加到 id 为 Root 的 节点下,!!! 通过 new 创建的实例常常用来配置一些全局的方法,数据和组件
  1. // 导入 Bindview.js
  2. import Bindview from "bindview"
  3. // new 一个实例
  4. new Bindview({
  5.     el:"#Root",
  6.     render(h){
  7.         return h("div",{},["hello"])
  8.     }
  9. })
复制代码

  • 通过 createApp 方法来创建 App , 在 createApp 方法中传入一个组件,在通过 $mount 方法将虚拟 DOM 添加到 id 为 Root 的 节点下,如何创建一个组件将在后面讲到
  1. import { createApp } from "bindview"
  2. import App from "./App"
  3. createApp(App).$mount("#Root")
复制代码
2. 虚拟 DOM 的创建


  • 通过 h 函数来创建虚拟 DOM , 虚拟 DOM 本质上就是一个 真实 DOM 抽象为一个 js 对象,对象上记录了 DOM 的类型,属性和子节点的信息,在 render 方法中可以通过 h 函数来创建虚拟 DOM , h 通过下面的方式都可以创建出虚拟 DOM , 通过 h 的的函数来创建 虚拟 DOM 的方式,不是很推荐,因为过程太繁琐我推荐使用 JSX 的方式来创建
  1. // 导入 Bindview.js
  2. import Bindview from "bindview"
  3. new Bindview({
  4.     el: '#Root',
  5.     render(h) {
  6.       return h('ul', {}, [
  7.               h('li', {} , []),
  8.         h('li', null , [])
  9.     ])
  10.     },
  11.   })
复制代码

  • 通过 JSX 来创建,在我配置好的 webpack 模板 下可以使用 JSX 来创建虚拟 DOM ,是非常推荐的做法,后面的例子都将使用 JSX 的形式
  1. // 导入 Bindview.js
  2. import Bindview from "bindview"
  3. new Bindview({
  4.     el: '#Root',
  5.     render() {
  6.       return (
  7.               Hello World
  8.       )
  9.     },
  10.   })
复制代码
3. 组件的定义和使用

组件是 Bindview 中的一个重要概念,是一个可以重复使用的 Bindview实例,它拥有独一无二的组件名称,它可以扩展虚拟 DOM,以组件名称的方式作为自定义的虚拟 DOM。因为组件是可复用的 Bindview 实例,所以它们与new Bindview()接收相同的选项,例如data, render(h){}、methods以及生命周期钩子等。
把一些公共的模块抽取出来,然后写成单独的的工具组件或者页面,在需要的页面中就直接引入即可。那么我们可以将其抽出为一个组件进行复用。
定义一个组件,Bindview 的组件是一个函数返回一个配置对像,对象中只有 render 配置项是必须的其他的配置项都不是必须的, 函数的 props 形参 用来接收一些传递给组件的参数,组件中还有一些功能将在后面的内容中讲到
  1. // 定义一个 App 组件
  2. export default function App(props) {
  3.   return {
  4.     name: 'App',
  5.     render() {
  6.       return (
  7.         
  8.           Hello World
  9.         
  10.       )
  11.     }
  12.   }
  13. }
复制代码
使用组件, 将组件注册到 components 配置项中,!!! 组件名一定要大写,虽然可以小写但这是为了避免一些错误,然后使用 JSX 方式来书写就可以使用了
  1. // 导入 Bindview.js
  2. import Bindview from "bindview"
  3. import App from "./App"
  4. // new 一个实例
  5. new Bindview({
  6.     el:"#Root",
  7.     render:() => (<App />),
  8.     components:{ App }
  9. })
复制代码
4. data 配置项和数据响应式

Bindview 使用了一种类似于 MVVM 的设计模式,数据和视图进行绑定,页面的显示结果将受 data 配置项中的数据影响,而 data 配置项中的数据使用了 Vue3 数据代理的方法,修改 data 中的数据,视图将自动更新
在下面这个例子中,data 中配置一个 num 是数据,在 render 方法中 this 可以获取到整个组件是实例,我们通过 this 解构出 data 并重命名为 $ ,在 JSX 中使用数据,在 button 上绑定了一个点击事件来对数据进行自增,当点击 页面上的 button 按钮时页面上的数据将自动更新
  1. export default function () {
  2.   return {
  3.     name: 'App',
  4.     render() {
  5.       const { data: $ } = this
  6.       return (
  7.         
  8.           {$.num}
  9.           <button onClick={() => $.num++}>Button</button>
  10.         
  11.       )
  12.     },
  13.     data:()=>({
  14.          num: 0
  15.     })
  16.   }
  17. }
复制代码
5. methods 配置项

methods 配置项用来定义一些组件内部需要使用的方法, 下面的例子中在 methods 中定义了一个 Add 方法来对 data 中的 num  进行自增,在 onClcik 事件绑定中使用当点击 button 时将调用该方法,Add 方法的 this  指向组件实例,  !!! 事件绑定中的方法或函数会接收到两个参数 第一个是事件绑定的 DOM 元素,第二个是事件对象 event ,  *** 如果组件需要使用一些方法和函数这并不是唯一的方式
  1. export default function () {
  2.   return {
  3.     name: 'App',
  4.     render() {
  5.       const { data: $,methods: f } = this
  6.       return (
  7.         
  8.           {$.num}
  9.           <button onClick={f.Add}>Button</button>
  10.         
  11.       )
  12.     },
  13.     data: {
  14.       num: 0
  15.     },
  16.     methods:{
  17.         Add(){
  18.             this.data.num++
  19.         }
  20.     }
  21.   }
  22. }
复制代码
6. ref 获取 DOM

ref 被用来给元素注册引用信息。引用信息将会注册在父组件的 refs 对象上。在 DOM 元素上使用,引用指向的就是 DOM 元素, ref 可以传入一个 字符串 或一个 函数 ,传入字符串的 DOM 元素将引用到 refs 上,传入函数函数会接收的 DOM 元素,在组件上使用 ref 只能使用传入函数,函数接收的组件实例
  1. export default function () {
  2.   let dom // 接收 dom 元素的实例
  3.   return {
  4.     name: 'App',
  5.     render() {
  6.       return (
  7.         
  8.           hello
  9.            dom = _dom}>world
  10.         
  11.       )
  12.     },
  13.     life:{
  14.         createDom(){
  15.             console.log(this.refs) // { div:HTMLDivElement }
  16.         }
  17.     }
  18.   }
  19. }
复制代码
如果使用了相同的 ref 信息那么,refs 对象中该信息将是一个数组保存了使用相同信息的 DOM
  1. export default function () {
  2.   return {
  3.     name: 'App',
  4.     render() {
  5.       return (
  6.         
  7.           hello
  8.           world
  9.         
  10.       )
  11.     },
  12.     life:{
  13.         createDom(){
  14.             console.log(this.refs) // { box:[ HTMLDivElement , HTMLDivElement ] }
  15.         }
  16.     }
  17.   }
  18. }
复制代码
7. linkage 联动更新

在 Bindview 中当父组件中触发更新时 ( 一般是 data 中的数据发生改变 ) 父组件会触发所有后代组件的更新,因为父组件不知道那些后代组件使用了它自身的一些数据,所以他会触发所有后代组件的更新方法,如果后代组件是视图模型中发生了变化,那么组件将更新视图,但在开发过程中一些组件只做展示效果那么可以通过 linkage 配置项来关闭父组件对自身的联动更新,*** 注意 linkage 只会关闭父组件对子组件的联动更新,而不会关闭子组件自身的数据响应式
下面的例子中给 Son 子组件配置了 linkage 配置项当改变父组件中的 num 的值时,子组件将不会更新来获取最新的数据来更新视图
  1. function Son(props) {
  2.   const { num } = props
  3.   return {
  4.     name: 'Son',
  5.     linkage: false,
  6.     render() {
  7.       return (
  8.         {num()}
  9.       )
  10.     }
  11.   }
  12. }
  13. export default function () {
  14.   return {
  15.     name: 'Dome',
  16.     render() {
  17.       const { data: $ } = this
  18.       return (
  19.         
  20.           <button onClick={() => $.num++}>num++</button>
  21.           <Son num={() => $.num} />
  22.         
  23.       )
  24.     },
  25.     data:()=>({
  26.       num: 0
  27.     }),
  28.     components: { Son }
  29.   }
  30. }
复制代码
8. 插槽

插槽是组件中不确定的部分由用户来定义,这部分就叫插槽,相当于一种占位符,在组件中通过组件函数的 slot 来获取插槽, slot 函数将返回插槽的虚拟 DOM ,在 render 中直接使用即可
在 Bindview 中组件插槽有两种一种是 普通插槽 还有一种是 函数插槽 ,下面将分别说明每种插槽的作用
1. 普通插槽

普通插槽就是在组件中直接书写文档结构这种组件的特点就是在插槽中会失去响应式,也就是说在插槽中使用了响应式数据将无法获得更新,一般用来展示一次性数据
  1. function Son(props,slot) {
  2.   const { num } = props
  3.   return {
  4.     name: 'Son',
  5.     render() {
  6.       return (
  7.         
  8.           {slot()} {num()}
  9.         
  10.       )
  11.     }
  12.   }
  13. }
  14. export default function () {
  15.   return {
  16.     name: 'Dome',
  17.     render() {
  18.       const { data: $ } = this
  19.       return (
  20.         
  21.           <button onClick={() => $.num++}>num++</button>
  22.           <Son num={() => $.num}>
  23.             Num:
  24.           </Son>
  25.         
  26.       )
  27.     },
  28.     data: {
  29.       num: 0
  30.     },
  31.     components: { Son },
  32.   }
  33. }
复制代码
2. 函数插槽

函数插槽就是在组件中使用一个函数将文档结构返回出去,这种方式将不会失去数据的响应式,同时它还可以拿到组件中的一些数据在 Son 组件中向 slot 传递一个字符串,在 Dome 组件中定义插槽的函数中可以通过 title 拿到并使用
  1. function Son(_,slot) {
  2.   return {
  3.     name: 'Son',
  4.     render() {
  5.       return (
  6.         
  7.           {slot("Num: ")}
  8.         
  9.       )
  10.     }
  11.   }
  12. }
  13. export default function () {
  14.   return {
  15.     name: 'Dome',
  16.     render() {
  17.       const { data: $ } = this
  18.       return (
  19.         
  20.           <button onClick={() => $.num++}>num++</button>
  21.           <Son>{(title) => (
  22.             {title} {$.num}
  23.           )}</Son>
  24.         
  25.       )
  26.     },
  27.     data:()=>({
  28.       num: 0
  29.     }),
  30.     components: { Son },
  31.   }
  32. }
复制代码
3. 多插槽

在组件中可以使用多个插槽,在使用多插槽时需要使用 { } 双花括号包裹,每个单独插槽就使用一个 {} 包裹 ,slot 将得到一个数组数组中包含了每个插槽
  1. function Son(_,slot) {
  2.   return {
  3.     name: 'Son',
  4.     render() {
  5.       return (
  6.         
  7.           插槽1 {slot[0]()}
  8.           插槽2 {slot[1]()}
  9.         
  10.       )
  11.     }
  12.   }
  13. }
  14. export default function () {
  15.   return {
  16.     name: 'Dome',
  17.     render() {
  18.       return (
  19.         
  20.           <Son>
  21.              {多插槽1}
  22.              {多插槽2}
  23.           </Son>
  24.         
  25.       )
  26.     },
  27.     components: { Son },
  28.   }
  29. }
复制代码
9. proto 向原型添加属性或方法

使用 proto 方法可以向构造函数的原型上添加属性或方法,在创造实例前调用使用,有两种使用方法,第一种每次只能添加一个方法或属性,第二种使用对象形式可以添加多个方法或属性,
  1. import Bindview from "../../bindview"
  2. // 使用一
  3. Bindview.proto('Test', function(){
  4.     console.log("Test")
  5. })
  6. // 使用二
  7. Bindview.proto({
  8.     Test1:"hello",
  9.     Test2(){
  10.         console.log("Test")
  11.     }
  12. })
  13. new Bindview({
  14.   el: '#Root',
  15.   render(h) {
  16.     return (
  17.       hello
  18.     )
  19.   }
  20. })
复制代码
10.插件

插件通常用来为 Vue 添加全局功能
插件用来给 bindview 拓展功能,如添加全局组件或全局属性,通过 use 方法来使用插件, 传入数组可以使用多个插件
!!! 插件需要是一个函数或一个带有 _install_ 方法的对象,它们会获得 bindview 的构造器
  1. import { Bindview } from "bindview@3"
  2. import App from "./App";
  3. import { history } from "bindview-router"
  4. Bindview.use(history)
  5. new Bindview({
  6.   el: '#Root',
  7.   render: () => (<App />),
  8.   components: { App }
  9. })
复制代码
11.全局组件

components 方法用来注册全局组件,在 new Bindview 之前全局注册的组件无需再注册即可使用
  1. import Bindview from "../../bindview@3"
  2. import App from "./App";
  3. Bindview.components("App",App) // 方式一
  4. Bindview.components({ App }) // 方式二
  5. new Bindview({
  6.   el:"#Root",
  7.   render: () => (<App />),
  8. })
复制代码
12. 动态组件

动态组件是在同一个位置根据不同的状态显示不同的组件,在动态组件中必须要有一个 id 参数并传入一个不会改变的唯一 id
下面是一个简单的动态组件例子
  1. import { crateId } from "bindview"
  2. import Dome1 from "./Dome1"
  3. import Dome2 from "./Dome2"
  4. export default function (props) {
  5.   let { state } = props
  6.   const [ a , b ] = crateId(2)
  7.   return {
  8.     name: 'Test',
  9.     render() {
  10.       return state() ? <Dome1 id={a} /> : <Dome2 id={b} />
  11.     },
  12.     components: { Dome1, Dome2 }
  13.   }
  14. }
复制代码
生命周期钩子

每个 Bindview 实例在被创建时都要经过一系列的初始化过程——例如,需要设置数据监听、将实例挂载到 DOM 并在数据变化时更新 DOM 等。同时在这个过程中也会运行一些叫做 生命周期钩子 的函数,这给了用户在不同阶段添加自己的代码的机会
在 Bindview 中 生命周期钩子 需要配置到 life 配置项中
生命周期钩子调用时beforeInit实例初始化前createddom 创建后updated数据改变后beforeDestroy组件销毁前1. beforeInit

beforeInit 会在组件实例初始化时调用, 在该阶段可以通过一个形参获取到组件的配置对象通过修改配置对象可以修改最后被创建出来的实例,也可以在此阶段通过 this 向组件实例上添加一些自定义的方法或数据
  1. function Life() {
  2.   return {
  3.     name: "Lifecomponents",
  4.     render() {
  5.       return (
  6.         hello
  7.       )
  8.     },
  9.     life: {
  10.                 beforeInit(ConfigObj){
  11.             console.log(ConfigObj)
  12.         }
  13.     }
  14.   }
  15. }
复制代码
2. created

created 钩子会在 render 配置项中的 虚拟DOM 被创建为 真实DOM 后调用,在此阶段就可以通过 refs 得到 DOM 元素了
  1. function Life() {
  2.   return {
  3.     name: "Lifecomponents",
  4.     render() {
  5.       return (
  6.         hello
  7.       )
  8.     },
  9.     life: {
  10.                 created(){
  11.             console.log(this.refs['box'])
  12.         }
  13.     }
  14.   }
  15. }
复制代码
3. updated

updated 钩子会在 data 配置项中的数据被修改后调用
  1. function Life() {
  2.   return {
  3.     name: "Lifecomponents",
  4.     render() {
  5.       return (
  6.         hello
  7.       )
  8.     },
  9.     life: {
  10.                 updated(){
  11.             console.log("date发生改变")
  12.         }
  13.     }
  14.   }
  15. }
复制代码
4. beforeDestroy

beforeDestroy 钩子会在组件被卸载之前调用,在此阶段可以注销事件监听,和清空定时器
  1. function Life() {
  2.   return {
  3.     name: "Lifecomponents",
  4.     render() {
  5.       return (
  6.         hello
  7.       )
  8.     },
  9.     life: {
  10.                 beforeDestroy(){
  11.             // 清空定时器或注销事件监听
  12.         }
  13.     }
  14.   }
  15. }
复制代码
原型方法

在  Bindview 组件实例中有一些以 $ 开头的原型方法,这些方法提供了一些方便开发的功能,这些方法中有些一般情况下只是用一次应为这些方法一般是是用来给组件添加一些配置的 如 添加全局组件,下面将说明每个原型方法的作用和使用方法
1. $appendComponent

$appendComponent 追加组件,向已经创建好的组件中注册新的组件在 created 生命周期中调用,一般来注册异步请求后的组件
  1. export default function App() {
  2.   return {
  3.     name: 'App',
  4.     render() {
  5.       const { data: _ } = this
  6.       return (
  7.         
  8.          {_.show?占位:<Test id="UUID" />}
  9.         </div >
  10.       )
  11.     },
  12.     data: () => ({
  13.       show: false
  14.     }),
  15.     life: {
  16.      async created() {
  17.         let module=await import("@/components/Test")
  18.         this.$appendComponent("Test",module.default)
  19.         this.data.show=true
  20.       }
  21.     }
  22.   }
  23. }
复制代码
2. $mount

$mount 安装组件, 将组件实例安装到页面上,方法需要传入一个 DOM 选择字符串 ( '#Root' , '.Root' 等) 或是一个 DOM 元素
  1. import { createApp,Bindview } from "../../bindview";
  2. import App from "./App"
  3. createApp(App).$mount("#Root")
  4. // new Bindview({
  5. // render: () => (<App />),
  6. //   components: { App }
  7. // }).$mount("#Root")
复制代码
3. $remove

$remove 卸载组件,通过组件实例调用可卸载组件,卸载时会调用 beforeDestroy 生命周期钩子
  1. import { createApp } from "../../bindview";
  2. import App from "./App"
  3. const vm = createApp(App).$mount("#Root")
  4. // 卸载组件
  5. vm.$remove()
复制代码
4. $mupdate

$mupdate 方法可以手动更新视图,在修改一些没有数据响应的数据但需要更新视图时可以在修改后调用这个方法,或传入一个函数,视图更新会在回调函数执行完后
  1. export default function () {
  2.   return {
  3.     name: 'App',
  4.     render() {
  5.       const { methods: f } = this
  6.       return (
  7.         
  8.           App
  9.           {f.datas()}
  10.           <button onClick={f.addData}>addDatas</button>
  11.         
  12.       )
  13.     },
  14.     methods: {
  15.       addData() {
  16.         this.$mupdate(() => {
  17.           this.datas++
  18.         })
  19.       },
  20.       datas() {
  21.         return this.datas
  22.       }
  23.     },
  24.     life: {
  25.       beforeInit() {
  26.         this.datas = 0
  27.       }
  28.     }
  29.   }
  30. }
复制代码
工具函数

在 Bindview 中不止有 Bindview 构造函数还提供了一些便于开发的工具函数
1. send

send 方法简化组件间传递参数的方法,该方法需要传入两个参数 1.数据源 2.数据项,该方法会返回一个对象对象中有两个方法分被是get set 用来获取和修改数据
  1. import { Bindview, send } from "bindview"
  2. // Dome 组件
  3. function Dome(props) {
  4.   let { num, arr } = props
  5.   return {
  6.     name: 'Dome',
  7.     render() {
  8.       const { methods:f } = this  
  9.       return (
  10.         
  11.           Dome
  12.           {num.get()}
  13.           <button onClick={f.set}>set</button>
  14.           {arr.get()}
  15.           <button onClick={f.setArr}>setArr</button>
  16.         
  17.       )
  18.     },
  19.     methods: {
  20.       set() {
  21.         // 1. num.set(100)
  22.         // 2. i 是数据
  23.         num.set(i => {
  24.           return ++i;
  25.         })
  26.       },
  27.       setArr() {
  28.         arr.set(100)
  29.       }
  30.     }
  31.   }
  32. }
  33. export default function () {
  34.   return {
  35.     el: '#Root',
  36.     render() {
  37.       const { data: $ } = this
  38.       return (
  39.         
  40.           App
  41.           <Dome num={send($, 'num')} arr={send($.arr, 1)} />
  42.         
  43.       )
  44.     },
  45.     data: {
  46.       num: 0,
  47.       arr: [1, 2, 3, 4]
  48.     },
  49.     components: { Dome }
  50.   }
  51. }
复制代码
2. createId

createId 函数用来创建多个唯一的 ID, 函数传入一个数值返回一个长度为该数值的数组数组中包含了唯一 ID,不传入将返回一个唯一的 ID ,一般配合动态组件使用
  1. import { crateId } from "bindview"
  2. import Dome1 from "./Dome1"
  3. import Dome2 from "./Dome2"
  4. export default function (props) {
  5.   let { state } = props
  6.   const [ a , b ] = crateId(2)
  7.   return {
  8.     name: 'Test',
  9.     render() {
  10.       return state() ? <Dome1 id={a} /> : <Dome2 id={b} />
  11.     },
  12.     components: { Dome1, Dome2 }
  13.   }
  14. }
复制代码
3. createApp

createApp 用来创建组件实例,创建的组件实例需要通过 $mount 进行挂载, createApp 可以传入两个参数第一个参数是组件函数是必须的,第二个是 props 对象不是必须的,这个对象在组件函数的 props 可以得到
  1. import { createApp } from "../../bindview";
  2. import App from "./App"
  3. createApp(App, { title: '这是props' }).$mount("#Root")
复制代码
来源:https://www.cnblogs.com/canlie/p/18106971
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具