• (2)打鸡儿教你Vue.js


    var obj = {}
    Object.defineProperty(obj, 'msg', {
      // 设置 obj.msg = "1" 时set方法会被系统调用 参数分别是设置后和设置前的值
      set: function (newVal, oldVal) {  },
      // 读取 obj.msg 时get方法会被系统调用
      get: function ( newVal, oldVal ) {}
    })
    

    Vue双向绑定
    image.png

    语法:v-bind:title=“msg”
    简写::title=“msg”

    <!-- 完整语法 -->
    <a v-bind:href="url"></a>
    <!-- 缩写 -->
    <a :href="url"></a>
    
    <!-- 完整语法 -->
    <a v-on:click="doSomething"></a>
    <!-- 缩写 -->
    <a @click="doSomething"></a>
    

    image.png

    key属性
    image.png

    -class和style
    image.png

    提升性能:v-pre
    提升性能:v-once

    过滤器 filter
    文本数据格式化

    {{}}和 v-bind 表达式
    

    全局过滤器

    Vue.filter('filterName', function (value) {
      // value 表示要过滤的内容
    })
    

    image.png

    局部过滤器
    image.png

    按键值修饰符
    image.png

    watch是一个对象,键是需要观察的表达式,值是对应回调函数
    image.png

    文本数据格式化:
    filter

    全局过滤器
    局部过滤器

    显示的内容由过滤器的返回值决定

    Vue.filter('filterName',function(value){
    }
    
    <div>{{ dataStr | date }}</div>
    <div>{{ dateStr | date('YYYY-MM-DD hh:mm:ss') }}</div>
    
    <script>
    Vue.filter('date',function(value,format){
     // value 要过滤的 字符串内容
     // format 过滤器的参数
     })
    </script>
    

    局部过滤器

    { 
     data: {},
     // 通过 filters 属性创建局部过滤器
     filters: {
      filterName: function(value, format){}
     }
    }
    

    修饰键,鼠标按键修饰符

    @keyup.13="submit"
    @keyup.enter="add"
    
    Vue.config.keyCodes.f2 = 113
    @keyup.enter.f2 = "add"
    

    监视数据变化
    watch
    watch是一个对象,键是表达式,值是回调函数

    new Vue({
     data: {
      a: 1,
      b: {
       age: 100
      }
     },
     watch: {
     a: function(val, oldVal){
      // val 表示当前值
      // oldVal 表示旧值
     },
    

    计算属性:

    var vm = new Vue({
     el: '#app',
     data: {
      firstname: '',
      lastname: ''
     },
     computed: {
     fullname() {
      return this.firstname + this.lastname
     }
     }
    })
    

    computed中的属性不能与data中的属性同名,否则会报错

    组件的生命周期函数
    事件

    钩子函数 - beforeCreate() - 实例初始化之后
    钩子函数 - created() - 发送请求获取数据
    钩子函数 - beforeMounted() - 在挂载开始之前被调用
    钩子函数 - mounted() - vue实例已经挂载到页面中
    钩子函数 - beforeUpdated()
    钩子函数 - updated()
    钩子函数 - beforeDestroy()
    钩子函数 - destroyed()

    axios
    封装ajax,用来发送请求,异步获取数据
    基于Promise的HTTP客户端,用于浏览器和node.js
    https://github.com/axios/axios

    image.png

    // 在浏览器中使用,直接引入js文件使用下面的GET/POST请求方式即可
    // 1 引入 axios.js
    // 2 直接调用axios提供的API发送请求
    created: function () {
      axios.get(url)
        .then(function(resp) {})
    }
    
    ---
    // 配合 webpack 使用方式如下:
    import Vue from 'vue'
    import axios from 'axios'
    // 将 axios 添加到 Vue.prototype 中
    Vue.prototype.$axios = axios
    
    ---
    // 在组件中使用:
    methods: {
      getData() {
        this.$axios.get('url')
          .then(res => {})
          .catch(err => {})
      }
    }
    
    ---
    // API使用方式:
    
    axios.get(url[, config])
    axios.post(url[, data[, config]])
    axios(url[, config])
    axios(config)
    
    const url = 'http://'
    
    axios.get('/user?id=')
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
    
    axios.get('/user', {
      params: {
        id: 123
      }
    })
    

    组件
    父组件到子组件
    props

    image.png

    $on():绑定自定义事件
    内容分发
    通过 标签指定内容展示区域


    请点赞!因为你的鼓励是我写作的最大动力!

    官方微信公众号

    吹逼交流群:711613774

    吹逼交流群

  • 相关阅读:
    sqlmap从入门到精通-第四章-4-6 MySQL数据库导入与导出攻略
    Python文章索引(持续更新~)
    如何用 Python 绘制玫瑰图等常见疫情图
    《民国奇探》的弹幕有点逗比,用 Python 爬下来看看
    发现了合自己胃口的公众号,但文章太多翻来翻去真麻烦,还好我学了 Python
    潘粤明的《龙岭迷窟》到底怎么样?我用 Python 得出了一些结论!
    Python 分析电影《南方车站的聚会》
    使用 Scrapy 爬取去哪儿网景区信息
    Python 爬虫(二):Requests 库
    Python 爬虫(一):爬虫伪装
  • 原文地址:https://www.cnblogs.com/dashucoding/p/11140202.html
Copyright © 2020-2023  润新知