• Vue如何直接调用Component里的方法

    有时候,我们需要在另一个A Component里直接调用B Component里的方法,但Vue的Component和我们平常写的JavaScript module不一样,不能简单的通过import后就直接调用,下面是我找到的一种方法,目前测试可用

    AComponent.vue

    <template>
      <div>
        <b-component ref="BComponent"></b-component>
      </div>
    </template>
     
    <script>
    import BComponent from './BComponent'
     
    export default {
      name: 'A',
     
      data () {
      },
     
      components: {
        BComponent
      },
     
      methods: {
        callACompoentFunction () {
          this.$refs.BComponent.sayHi()
        }
      }
    }
    </script>
     
    <style scoped>
    </style>
    

    ...

    READ ALL

  • bz2解压失败

    解压bz2压缩包时提示错误:

    [root@test01 e2e]# tar -jxf test.tar.bz2 
    tar (child): bzip2: Cannot exec: No such file or directory
    tar (child): Error is not recoverable: exiting now
    tar: Child returned status 2
    tar: Error is not recoverable: exiting now
    

    看错误就知道bzip2系统不支持,安装所需的处理包,如CentOS下执行

    ...

    READ ALL

  • 快速查看Linux是32位还是64位

    要快速查看Linux操作系统是32还是64位, 可以快速通过几个命令来判断

    使用arch命令

    [root@test01 Home]# arch
    x86_64
    

    使用uname命令

    [root@test01 Home]# uname -a
    Linux test01 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
    

    也可以这样

    [root@test01 Home]# uname -m
    x86_64
    

    ...

    READ ALL