|
快速入门
1. 创建第一个应用
由于该库还不支持 src 引入,接下来的例子我将在 webpack 环境下演示,webpack 模板 已经配置完毕,可直接下载使用
创建一个应用可用通过 new 来创建实例或通过提供的 createApp 方法来创建下面我将分别演示
- 通过 new 来创建 App , el 配置项用来选择 DOM 被渲染到那个节点下, render 方法返回一个虚拟 DOM ,h 函数可以创建一个虚拟 DOM,render 返回的虚拟 DOM 将被转换为真实 DOM 并添加到 id 为 Root 的 节点下,!!! 通过 new 创建的实例常常用来配置一些全局的方法,数据和组件
- // 导入 Bindview.js
- import Bindview from "bindview"
- // new 一个实例
- new Bindview({
- el:"#Root",
- render(h){
- return h("div",{},["hello"])
- }
- })
复制代码
- 通过 createApp 方法来创建 App , 在 createApp 方法中传入一个组件,在通过 $mount 方法将虚拟 DOM 添加到 id 为 Root 的 节点下,如何创建一个组件将在后面讲到
- import { createApp } from "bindview"
- import App from "./App"
- createApp(App).$mount("#Root")
复制代码 2. 虚拟 DOM 的创建
- 通过 h 函数来创建虚拟 DOM , 虚拟 DOM 本质上就是一个 真实 DOM 抽象为一个 js 对象,对象上记录了 DOM 的类型,属性和子节点的信息,在 render 方法中可以通过 h 函数来创建虚拟 DOM , h 通过下面的方式都可以创建出虚拟 DOM , 通过 h 的的函数来创建 虚拟 DOM 的方式,不是很推荐,因为过程太繁琐我推荐使用 JSX 的方式来创建
- // 导入 Bindview.js
- import Bindview from "bindview"
- new Bindview({
- el: '#Root',
- render(h) {
- return h('ul', {}, [
- h('li', {} , []),
- h('li', null , [])
- ])
- },
- })
复制代码
- 通过 JSX 来创建,在我配置好的 webpack 模板 下可以使用 JSX 来创建虚拟 DOM ,是非常推荐的做法,后面的例子都将使用 JSX 的形式
- // 导入 Bindview.js
- import Bindview from "bindview"
- new Bindview({
- el: '#Root',
- render() {
- return (
- Hello World
- )
- },
- })
复制代码 3. 组件的定义和使用
组件是 Bindview 中的一个重要概念,是一个可以重复使用的 Bindview实例,它拥有独一无二的组件名称,它可以扩展虚拟 DOM,以组件名称的方式作为自定义的虚拟 DOM。因为组件是可复用的 Bindview 实例,所以它们与new Bindview()接收相同的选项,例如data, render(h){}、methods以及生命周期钩子等。
把一些公共的模块抽取出来,然后写成单独的的工具组件或者页面,在需要的页面中就直接引入即可。那么我们可以将其抽出为一个组件进行复用。
定义一个组件,Bindview 的组件是一个函数返回一个配置对像,对象中只有 render 配置项是必须的其他的配置项都不是必须的, 函数的 props 形参 用来接收一些传递给组件的参数,组件中还有一些功能将在后面的内容中讲到- // 定义一个 App 组件
- export default function App(props) {
- return {
- name: 'App',
- render() {
- return (
-
- Hello World
-
- )
- }
- }
- }
复制代码 使用组件, 将组件注册到 components 配置项中,!!! 组件名一定要大写,虽然可以小写但这是为了避免一些错误,然后使用 JSX 方式来书写就可以使用了- // 导入 Bindview.js
- import Bindview from "bindview"
- import App from "./App"
- // new 一个实例
- new Bindview({
- el:"#Root",
- render:() => (<App />),
- components:{ App }
- })
复制代码 4. data 配置项和数据响应式
Bindview 使用了一种类似于 MVVM 的设计模式,数据和视图进行绑定,页面的显示结果将受 data 配置项中的数据影响,而 data 配置项中的数据使用了 Vue3 数据代理的方法,修改 data 中的数据,视图将自动更新
在下面这个例子中,data 中配置一个 num 是数据,在 render 方法中 this 可以获取到整个组件是实例,我们通过 this 解构出 data 并重命名为 $ ,在 JSX 中使用数据,在 button 上绑定了一个点击事件来对数据进行自增,当点击 页面上的 button 按钮时页面上的数据将自动更新- export default function () {
- return {
- name: 'App',
- render() {
- const { data: $ } = this
- return (
-
- {$.num}
- <button onClick={() => $.num++}>Button</button>
-
- )
- },
- data:()=>({
- num: 0
- })
- }
- }
复制代码 5. methods 配置项
methods 配置项用来定义一些组件内部需要使用的方法, 下面的例子中在 methods 中定义了一个 Add 方法来对 data 中的 num 进行自增,在 onClcik 事件绑定中使用当点击 button 时将调用该方法,Add 方法的 this 指向组件实例, !!! 事件绑定中的方法或函数会接收到两个参数 第一个是事件绑定的 DOM 元素,第二个是事件对象 event , *** 如果组件需要使用一些方法和函数这并不是唯一的方式- export default function () {
- return {
- name: 'App',
- render() {
- const { data: $,methods: f } = this
- return (
-
- {$.num}
- <button onClick={f.Add}>Button</button>
-
- )
- },
- data: {
- num: 0
- },
- methods:{
- Add(){
- this.data.num++
- }
- }
- }
- }
复制代码 6. ref 获取 DOM
ref 被用来给元素注册引用信息。引用信息将会注册在父组件的 refs 对象上。在 DOM 元素上使用,引用指向的就是 DOM 元素, ref 可以传入一个 字符串 或一个 函数 ,传入字符串的 DOM 元素将引用到 refs 上,传入函数函数会接收的 DOM 元素,在组件上使用 ref 只能使用传入函数,函数接收的组件实例- export default function () {
- let dom // 接收 dom 元素的实例
- return {
- name: 'App',
- render() {
- return (
-
- hello
- dom = _dom}>world
-
- )
- },
- life:{
- createDom(){
- console.log(this.refs) // { div:HTMLDivElement }
- }
- }
- }
- }
复制代码 如果使用了相同的 ref 信息那么,refs 对象中该信息将是一个数组保存了使用相同信息的 DOM- export default function () {
- return {
- name: 'App',
- render() {
- return (
-
- hello
- world
-
- )
- },
- life:{
- createDom(){
- console.log(this.refs) // { box:[ HTMLDivElement , HTMLDivElement ] }
- }
- }
- }
- }
复制代码 7. linkage 联动更新
在 Bindview 中当父组件中触发更新时 ( 一般是 data 中的数据发生改变 ) 父组件会触发所有后代组件的更新,因为父组件不知道那些后代组件使用了它自身的一些数据,所以他会触发所有后代组件的更新方法,如果后代组件是视图模型中发生了变化,那么组件将更新视图,但在开发过程中一些组件只做展示效果那么可以通过 linkage 配置项来关闭父组件对自身的联动更新,*** 注意 linkage 只会关闭父组件对子组件的联动更新,而不会关闭子组件自身的数据响应式
下面的例子中给 Son 子组件配置了 linkage 配置项当改变父组件中的 num 的值时,子组件将不会更新来获取最新的数据来更新视图- function Son(props) {
- const { num } = props
- return {
- name: 'Son',
- linkage: false,
- render() {
- return (
- {num()}
- )
- }
- }
- }
- export default function () {
- return {
- name: 'Dome',
- render() {
- const { data: $ } = this
- return (
-
- <button onClick={() => $.num++}>num++</button>
- <Son num={() => $.num} />
-
- )
- },
- data:()=>({
- num: 0
- }),
- components: { Son }
- }
- }
复制代码 8. 插槽
插槽是组件中不确定的部分由用户来定义,这部分就叫插槽,相当于一种占位符,在组件中通过组件函数的 slot 来获取插槽, slot 函数将返回插槽的虚拟 DOM ,在 render 中直接使用即可
在 Bindview 中组件插槽有两种一种是 普通插槽 还有一种是 函数插槽 ,下面将分别说明每种插槽的作用
1. 普通插槽
普通插槽就是在组件中直接书写文档结构这种组件的特点就是在插槽中会失去响应式,也就是说在插槽中使用了响应式数据将无法获得更新,一般用来展示一次性数据- function Son(props,slot) {
- const { num } = props
- return {
- name: 'Son',
- render() {
- return (
-
- {slot()} {num()}
-
- )
- }
- }
- }
- export default function () {
- return {
- name: 'Dome',
- render() {
- const { data: $ } = this
- return (
-
- <button onClick={() => $.num++}>num++</button>
- <Son num={() => $.num}>
- Num:
- </Son>
-
- )
- },
- data: {
- num: 0
- },
- components: { Son },
- }
- }
复制代码 2. 函数插槽
函数插槽就是在组件中使用一个函数将文档结构返回出去,这种方式将不会失去数据的响应式,同时它还可以拿到组件中的一些数据在 Son 组件中向 slot 传递一个字符串,在 Dome 组件中定义插槽的函数中可以通过 title 拿到并使用- function Son(_,slot) {
- return {
- name: 'Son',
- render() {
- return (
-
- {slot("Num: ")}
-
- )
- }
- }
- }
- export default function () {
- return {
- name: 'Dome',
- render() {
- const { data: $ } = this
- return (
-
- <button onClick={() => $.num++}>num++</button>
- <Son>{(title) => (
- {title} {$.num}
- )}</Son>
-
- )
- },
- data:()=>({
- num: 0
- }),
- components: { Son },
- }
- }
复制代码 3. 多插槽
在组件中可以使用多个插槽,在使用多插槽时需要使用 { } 双花括号包裹,每个单独插槽就使用一个 {} 包裹 ,slot 将得到一个数组数组中包含了每个插槽- function Son(_,slot) {
- return {
- name: 'Son',
- render() {
- return (
-
- 插槽1 {slot[0]()}
- 插槽2 {slot[1]()}
-
- )
- }
- }
- }
- export default function () {
- return {
- name: 'Dome',
- render() {
- return (
-
- <Son>
- {多插槽1}
- {多插槽2}
- </Son>
-
- )
- },
- components: { Son },
- }
- }
复制代码 9. proto 向原型添加属性或方法
使用 proto 方法可以向构造函数的原型上添加属性或方法,在创造实例前调用使用,有两种使用方法,第一种每次只能添加一个方法或属性,第二种使用对象形式可以添加多个方法或属性,- import Bindview from "../../bindview"
- // 使用一
- Bindview.proto('Test', function(){
- console.log("Test")
- })
- // 使用二
- Bindview.proto({
- Test1:"hello",
- Test2(){
- console.log("Test")
- }
- })
- new Bindview({
- el: '#Root',
- render(h) {
- return (
- hello
- )
- }
- })
复制代码 10.插件
插件通常用来为 Vue 添加全局功能
插件用来给 bindview 拓展功能,如添加全局组件或全局属性,通过 use 方法来使用插件, 传入数组可以使用多个插件
!!! 插件需要是一个函数或一个带有 _install_ 方法的对象,它们会获得 bindview 的构造器- import { Bindview } from "bindview@3"
- import App from "./App";
- import { history } from "bindview-router"
- Bindview.use(history)
- new Bindview({
- el: '#Root',
- render: () => (<App />),
- components: { App }
- })
复制代码 11.全局组件
components 方法用来注册全局组件,在 new Bindview 之前全局注册的组件无需再注册即可使用- import Bindview from "../../bindview@3"
- import App from "./App";
- Bindview.components("App",App) // 方式一
- Bindview.components({ App }) // 方式二
- new Bindview({
- el:"#Root",
- render: () => (<App />),
- })
复制代码 12. 动态组件
动态组件是在同一个位置根据不同的状态显示不同的组件,在动态组件中必须要有一个 id 参数并传入一个不会改变的唯一 id
下面是一个简单的动态组件例子- import { crateId } from "bindview"
- import Dome1 from "./Dome1"
- import Dome2 from "./Dome2"
- export default function (props) {
- let { state } = props
- const [ a , b ] = crateId(2)
- return {
- name: 'Test',
- render() {
- return state() ? <Dome1 id={a} /> : <Dome2 id={b} />
- },
- components: { Dome1, Dome2 }
- }
- }
复制代码 生命周期钩子
每个 Bindview 实例在被创建时都要经过一系列的初始化过程——例如,需要设置数据监听、将实例挂载到 DOM 并在数据变化时更新 DOM 等。同时在这个过程中也会运行一些叫做 生命周期钩子 的函数,这给了用户在不同阶段添加自己的代码的机会
在 Bindview 中 生命周期钩子 需要配置到 life 配置项中
生命周期钩子调用时beforeInit实例初始化前createddom 创建后updated数据改变后beforeDestroy组件销毁前1. beforeInit
beforeInit 会在组件实例初始化时调用, 在该阶段可以通过一个形参获取到组件的配置对象通过修改配置对象可以修改最后被创建出来的实例,也可以在此阶段通过 this 向组件实例上添加一些自定义的方法或数据- function Life() {
- return {
- name: "Lifecomponents",
- render() {
- return (
- hello
- )
- },
- life: {
- beforeInit(ConfigObj){
- console.log(ConfigObj)
- }
- }
- }
- }
复制代码 2. created
created 钩子会在 render 配置项中的 虚拟DOM 被创建为 真实DOM 后调用,在此阶段就可以通过 refs 得到 DOM 元素了- function Life() {
- return {
- name: "Lifecomponents",
- render() {
- return (
- hello
- )
- },
- life: {
- created(){
- console.log(this.refs['box'])
- }
- }
- }
- }
复制代码 3. updated
updated 钩子会在 data 配置项中的数据被修改后调用- function Life() {
- return {
- name: "Lifecomponents",
- render() {
- return (
- hello
- )
- },
- life: {
- updated(){
- console.log("date发生改变")
- }
- }
- }
- }
复制代码 4. beforeDestroy
beforeDestroy 钩子会在组件被卸载之前调用,在此阶段可以注销事件监听,和清空定时器- function Life() {
- return {
- name: "Lifecomponents",
- render() {
- return (
- hello
- )
- },
- life: {
- beforeDestroy(){
- // 清空定时器或注销事件监听
- }
- }
- }
- }
复制代码 原型方法
在 Bindview 组件实例中有一些以 $ 开头的原型方法,这些方法提供了一些方便开发的功能,这些方法中有些一般情况下只是用一次应为这些方法一般是是用来给组件添加一些配置的 如 添加全局组件,下面将说明每个原型方法的作用和使用方法
1. $appendComponent
$appendComponent 追加组件,向已经创建好的组件中注册新的组件在 created 生命周期中调用,一般来注册异步请求后的组件- export default function App() {
- return {
- name: 'App',
- render() {
- const { data: _ } = this
- return (
-
- {_.show?占位:<Test id="UUID" />}
- </div >
- )
- },
- data: () => ({
- show: false
- }),
- life: {
- async created() {
- let module=await import("@/components/Test")
- this.$appendComponent("Test",module.default)
- this.data.show=true
- }
- }
- }
- }
复制代码 2. $mount
$mount 安装组件, 将组件实例安装到页面上,方法需要传入一个 DOM 选择字符串 ( '#Root' , '.Root' 等) 或是一个 DOM 元素- import { createApp,Bindview } from "../../bindview";
- import App from "./App"
- createApp(App).$mount("#Root")
- // new Bindview({
- // render: () => (<App />),
- // components: { App }
- // }).$mount("#Root")
复制代码 3. $remove
$remove 卸载组件,通过组件实例调用可卸载组件,卸载时会调用 beforeDestroy 生命周期钩子- import { createApp } from "../../bindview";
- import App from "./App"
- const vm = createApp(App).$mount("#Root")
- // 卸载组件
- vm.$remove()
复制代码 4. $mupdate
$mupdate 方法可以手动更新视图,在修改一些没有数据响应的数据但需要更新视图时可以在修改后调用这个方法,或传入一个函数,视图更新会在回调函数执行完后- export default function () {
- return {
- name: 'App',
- render() {
- const { methods: f } = this
- return (
-
- App
- {f.datas()}
- <button onClick={f.addData}>addDatas</button>
-
- )
- },
- methods: {
- addData() {
- this.$mupdate(() => {
- this.datas++
- })
- },
- datas() {
- return this.datas
- }
- },
- life: {
- beforeInit() {
- this.datas = 0
- }
- }
- }
- }
复制代码 工具函数
在 Bindview 中不止有 Bindview 构造函数还提供了一些便于开发的工具函数
1. send
send 方法简化组件间传递参数的方法,该方法需要传入两个参数 1.数据源 2.数据项,该方法会返回一个对象对象中有两个方法分被是get set 用来获取和修改数据- import { Bindview, send } from "bindview"
- // Dome 组件
- function Dome(props) {
- let { num, arr } = props
- return {
- name: 'Dome',
- render() {
- const { methods:f } = this
- return (
-
- Dome
- {num.get()}
- <button onClick={f.set}>set</button>
- {arr.get()}
- <button onClick={f.setArr}>setArr</button>
-
- )
- },
- methods: {
- set() {
- // 1. num.set(100)
- // 2. i 是数据
- num.set(i => {
- return ++i;
- })
- },
- setArr() {
- arr.set(100)
- }
- }
- }
- }
- export default function () {
- return {
- el: '#Root',
- render() {
- const { data: $ } = this
- return (
-
- App
- <Dome num={send($, 'num')} arr={send($.arr, 1)} />
-
- )
- },
- data: {
- num: 0,
- arr: [1, 2, 3, 4]
- },
- components: { Dome }
- }
- }
复制代码 2. createId
createId 函数用来创建多个唯一的 ID, 函数传入一个数值返回一个长度为该数值的数组数组中包含了唯一 ID,不传入将返回一个唯一的 ID ,一般配合动态组件使用- import { crateId } from "bindview"
- import Dome1 from "./Dome1"
- import Dome2 from "./Dome2"
- export default function (props) {
- let { state } = props
- const [ a , b ] = crateId(2)
- return {
- name: 'Test',
- render() {
- return state() ? <Dome1 id={a} /> : <Dome2 id={b} />
- },
- components: { Dome1, Dome2 }
- }
- }
复制代码 3. createApp
createApp 用来创建组件实例,创建的组件实例需要通过 $mount 进行挂载, createApp 可以传入两个参数第一个参数是组件函数是必须的,第二个是 props 对象不是必须的,这个对象在组件函数的 props 可以得到- import { createApp } from "../../bindview";
- import App from "./App"
- createApp(App, { title: '这是props' }).$mount("#Root")
复制代码 来源:https://www.cnblogs.com/canlie/p/18106971
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
|