欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue.js初學入門教程(2)

 更新時間:2016年11月07日 09:59:36   作者:Redchar  
這篇文章主要為大家詳細介紹了vue.js初學入門教程第二篇,具有一定的參考價值,感興趣的小伙伴們可以參考一下

接著上一篇vue慢速入門教程學習。

4.組件使用基礎(chǔ)

什么是組件?組件可以理解為可重用的自定義HTML。
可以使用一堆組件來構(gòu)造大型應(yīng)用,任意類型的應(yīng)用界面都可以抽象為一個組件樹:


可以把組件代碼按照template、style、script的拆分方式,放置到對應(yīng)的.vue文件中。
組件預(yù)定義選項中最核心的幾個:

模板(template)、初始數(shù)據(jù)(data)、接受的外部參數(shù)(props)、方法(methods)、生命周期鉤子函數(shù)(lifecycle hooks)。

4.1 基本步驟

使用組件首先需要創(chuàng)建構(gòu)造器:

var MyComponent = Vue.extend({
 // 選項...
})

要把這個構(gòu)造器用作組件,需要用 Vue.component(tag, constructor) 注冊 :

// 全局注冊組件,tag 為 my-component
Vue.component('my-component', MyComponent)

然后使用:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="xxx">
   <my-component></my-component>
  </div>
 </body>
 <script src="js/vue.js"></script>
 <script>
  var myComponent = Vue.extend({
   template: '<p>9898不得了!</p>'
  });
  Vue.component('my-component', myComponent);
  new Vue({
   el: '#xxx'
  });
 </script>
</html>

其中,

Vue.component('my-component', MyComponent)這種是全局注冊,第一個參數(shù)是注冊組件的名稱,第二個參數(shù)是組件的構(gòu)造函數(shù);

選項對象的template屬性用于定義組件要渲染的HTML;

組件的模板替換了自定義元素,自定義元素的作用只是作為一個掛載點。組件掛載在vue實例上才會生效。

對于自定義標簽名字,Vue.js 不強制要求遵循 W3C 規(guī)則(小寫,并且包含一個短杠),為了避免不必要的事端盡管遵循這個規(guī)則。 

4.2 局部注冊

用實例選項 components 注冊:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="xxx">
   <my-component></my-component>
  </div>
 </body>
 <script src="js/vue.js"></script>
 <script>
  var myComponent = Vue.extend({
   template: '<p>9898不得了!</p>'
  });
//  Vue.component('my-component', myComponent);
  new Vue({
   el: '#xxx',
   components: {
    'my-component': myComponent
   }
  });
 </script>
</html>

也可以在組件中定義并使用其他組件:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="example">
   <xx-component></xx-component>
  </div>
 </body>
 <script src="js/vue.js"></script>
 <script>
  var Child = Vue.extend({
   template: '<div>i am zai</div>',
   replace: true
  })
  var Parent = Vue.extend({
   template: '<p>i am baba</p><br/><wa></wa>',
   components: {
    // <xx-component>只能用在父組件模板內(nèi)
    'wa': Child
   }
  })
  // 創(chuàng)建根實例
  new Vue({
   el: '#example',
   components: {
    'xx-component': Parent
   }
  })
 </script>
</html>

其中,子組件只能在父組件的template中使用。

另外,有簡化的寫法,Vue在背后會自動地調(diào)用Vue.extend():

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="xxx">
   <my-component-continue></my-component-continue>
  </div>
 </body>
 <script src="js/vue.js"></script>
 <script>
  // 局部注冊的簡化寫法
  var vm2 = new Vue({
   el: '#xxx',
   components: {
    'my-component': {
     template: '<div>9898不得了!</div>'
    },
    'my-component-continue': {
     template: '<div>糧食大豐收!</div>'
    }
   }
  })
 </script>
</html>

4.3 組件選項問題

在定義組件的選項時,data和el選項必須使用函數(shù)。

如果data選項指向某個對象,這意味著所有的組件實例共用一個data。
所以應(yīng)當使用一個函數(shù)作為 data 選項,讓這個函數(shù)返回一個新對象:

Vue.component('my-component', {
 data: function(){

  return {a : 1}

 }

})

同理,el 選項用在 Vue.extend() 中時也須是一個函數(shù)。 

5.數(shù)據(jù)傳遞

Vue.js組件之間有三種數(shù)據(jù)傳遞方式:

props
組件通信
slot

5.1 props

  “props”是組件數(shù)據(jù)的一個字段,期望從父組件傳下來數(shù)據(jù)。因為組件實例的作用域是孤立的,所以子組件需要顯式地用props選項來獲取父組件的數(shù)據(jù)。

  Props選項可以是字面量、表達式、綁定修飾符。

5.1.1 字面量

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <child msg="hello!"></child>
  <script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
  <script type="text/javascript">
   Vue.component('child', {
    // 聲明 props
    props: ['msg'],
    // prop 可以用在模板內(nèi)
    // 可以用 `this.msg` 設(shè)置
    template: '<span>{{ msg }}你困嗎</span>'
   })
   new Vue({
    el: 'body'
   })
  </script>
 </body>
</html>

HTML 特性不區(qū)分大小寫。名字形式為 camelCase 的 prop 用作特性時,需要轉(zhuǎn)為 kebab-case(短橫線隔開):

Vue.component('child', {
 // camelCase in JavaScript
 props: ['myMessage'],
 template: '<span>{{ myMessage }}</span>'
})
<!-- kebab-case in HTML -->
<child my-message="hello!"></child> 

5.1.2 動態(tài)

類似于用 v-bind 綁定 HTML 特性到一個表達式,也可以用 v-bind 綁定動態(tài) Props 到父組件的數(shù)據(jù)。每當父組件的數(shù)據(jù)變化時,也會傳導給子組件。比如醬:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div>
   <input v-model="parentMsg">
   <br>
   <child :my-message="parentMsg"></child>
  </div>
  <script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
  <script type="text/javascript">
   Vue.component('child', {
    props: ['myMessage'],
    template: '<span>{{ myMessage }}你困嗎</span>'
   })
   new Vue({
    el: 'body',
    data:{
     parentMsg:''
    }
   })
  </script>
 </body>
</html>

當我在input里面輸入哈哈的時候:

5.1.3 綁定類型

可以使用綁定修飾符:

.sync,雙向綁定
.once,單次綁定

<!-- 默認為單向綁定 -->
<child :msg="parentMsg"></child>

<!-- 雙向綁定 -->
<child :msg.sync="parentMsg"></child>

<!-- 單次綁定 -->
<child :msg.once="parentMsg"></child>

prop 默認是單向綁定:當父組件的屬性變化時,將傳導給子組件,但是反過來不會。

不過需要注意的是:如果 prop 是一個對象或數(shù)組,是按引用傳遞。在子組件內(nèi)修改它會影響父組件的狀態(tài),不管是使用哪種綁定類型。

示例:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="app">

   <table>
    <tr>
     <th colspan="3">父組件數(shù)據(jù)</td>
    </tr>
    <tr>
     <td>name</td>
     <td>{{ name }}</td>
     <td><input type="text" v-model="name" /></td>
    </tr>
    <tr>
     <td>age</td>
     <td>{{ age }}</td>
     <td><input type="text" v-model="age" /></td>
    </tr>
   </table>
  
   <my-component v-bind:my-name.sync="name" v-bind:my-age="age"></my-component>
  </div>
  
  <template id="myComponent">
   <table>
    <tr>
     <th colspan="3">子組件數(shù)據(jù)</td>
    </tr>
    <tr>
     <td>my name</td>
     <td>{{ myName }}</td>
     <td><input type="text" v-model="myName" /></td>
    </tr>
    <tr>
     <td>my age</td>
     <td>{{ myAge }}</td>
     <td><input type="text" v-model="myAge" /></td>
    </tr>
   </table>
  </template>
  <script src="js/vue.js"></script>
  <script>
   var vm = new Vue({
    el: '#app',
    data: {
     name: 'k',
     age: 24
    },
    components: {
     'my-component': {
      template: '#myComponent',
      props: ['myName', 'myAge']
     }
    }
   })
  </script>
 </body>
</html>

上面這段設(shè)置了名字雙向,年齡單向:

以下是一個大神的綜合示例:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <div id="app">

   <table>
    <tr>
     <th colspan="3">父組件數(shù)據(jù)</td>
    </tr>
    <tr>
     <td>name</td>
     <td>{{ name }}</td>
     <td><input type="text" v-model="name" /></td>
    </tr>
    <tr>
     <td>age</td>
     <td>{{ age }}</td>
     <td><input type="text" v-model="age" /></td>
    </tr>
   </table>
  
   <my-component v-bind:my-name.sync="name" v-bind:my-age="age"></my-component>
  </div>
  
  <template id="myComponent">
   <table>
    <tr>
     <th colspan="3">子組件數(shù)據(jù)</td>
    </tr>
    <tr>
     <td>my name</td>
     <td>{{ myName }}</td>
     <td><input type="text" v-model="myName" /></td>
    </tr>
    <tr>
     <td>my age</td>
     <td>{{ myAge }}</td>
     <td><input type="text" v-model="myAge" /></td>
    </tr>
   </table>
  </template>
  <script src="js/vue.js"></script>
  <script>
   var vm = new Vue({
    el: '#app',
    data: {
     name: 'k',
     age: 24
    },
    components: {
     'my-component': {
      template: '#myComponent',
      props: ['myName', 'myAge']
     }
    }
   })
  </script>
 </body>
</html>


  

可以檢索:

其中,{{ col | capitalize}}過濾,首字母大寫。

<tr v-for="entry in data | filterBy filterKey">

  <td v-for="col in columns">

    {{entry[col]}}

  </td>

</tr>

過濾搜索關(guān)鍵詞;

雙循環(huán),tr循環(huán)data條數(shù),4行,entry表示每行;td循環(huán)columns數(shù)量,3列,col表示每列,entry[col]取具體數(shù)據(jù)。

props: {
  data: Array,
  columns: Array,
  filterKey: String

}

驗證:父組件傳遞過來的data和columns必須是Array類型,filterKey必須是字符串類型。

驗證要求示例:

Vue.component('example', {
 props: {
 // 基礎(chǔ)類型檢測 (`null` 意思是任何類型都可以)
 propA: Number,
 // 多種類型 (1.0.21+)
 propM: [String, Number],
 // 必需且是字符串
 propB: {
  type: String,
  required: true
 },
 // 數(shù)字,有默認值
 propC: {
  type: Number,
  default: 100
 },
 // 對象/數(shù)組的默認值應(yīng)當由一個函數(shù)返回
 propD: {
  type: Object,
  default: function () {
  return { msg: 'hello' }
  }
 },
 // 指定這個 prop 為雙向綁定
 // 如果綁定類型不對將拋出一條警告
 propE: {
  twoWay: true
 },
 // 自定義驗證函數(shù)
 propF: {
  validator: function (value) {
  return value > 10
  }
 },
 // 轉(zhuǎn)換函數(shù)(1.0.12 新增)
 // 在設(shè)置值之前轉(zhuǎn)換值
 propG: {
  coerce: function (val) {
  return val + '' // 將值轉(zhuǎn)換為字符串
  }
 },
 propH: {
  coerce: function (val) {
  return JSON.parse(val) // 將 JSON 字符串轉(zhuǎn)換為對象
  }
 }
 }
})

Stringtype 可以是下面原生構(gòu)造器:

Number
Boolean
Function
Object
Array

type 也可以是一個自定義構(gòu)造器,使用 instanceof 檢測。

當 prop 驗證失敗時,Vue 將拒絕在子組件上設(shè)置此值,如果使用的是開發(fā)版本會拋出一條警告。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

參考:Vue.js——60分鐘組件快速入門(上篇)

  《vue.js權(quán)威指南》

相關(guān)文章

  • vue?watch報錯:Error?in?callback?for?watcher?"xxx":"TypeError的解決方法

    vue?watch報錯:Error?in?callback?for?watcher?"xxx&qu

    這篇文章主要給大家介紹了關(guān)于vue?watch報錯:Error?in?callback?for?watcher?“xxx“:“TypeError:Cannot?read?properties?of?undefined的解決方法,需要的朋友可以參考下
    2023-03-03
  • 詳解elementUI中input框無法輸入的問題

    詳解elementUI中input框無法輸入的問題

    這篇文章主要介紹了詳解elementUI中input框無法輸入的問題,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-04-04
  • vue如何動態(tài)綁定img的src屬性(v-bind)

    vue如何動態(tài)綁定img的src屬性(v-bind)

    這篇文章主要介紹了vue如何動態(tài)綁定img的src屬性(v-bind),具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • Vue組件創(chuàng)建和傳值的方法

    Vue組件創(chuàng)建和傳值的方法

    這篇文章給大家介紹了vue組件創(chuàng)建和傳值的方法,創(chuàng)建組件有三種方法,文中給大家介紹的非常詳細,父組件傳值給子組件的方法,給大家介紹的也非常詳細,需要的朋友參考下吧
    2018-08-08
  • vue中的面包屑導航組件實例代碼

    vue中的面包屑導航組件實例代碼

    這篇文章主要介紹了vue的面包屑導航組件,本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-07-07
  • vue-element如何實現(xiàn)動態(tài)換膚存儲

    vue-element如何實現(xiàn)動態(tài)換膚存儲

    這篇文章主要介紹了vue-element如何實現(xiàn)動態(tài)換膚存儲問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • vite構(gòu)建vue3項目的全過程記錄

    vite構(gòu)建vue3項目的全過程記錄

    vite是VUE3創(chuàng)建項目的工具,項目大了之后,性能明顯優(yōu)于webpack,下面這篇文章主要給大家介紹了關(guān)于vite構(gòu)建vue3項目的相關(guān)資料,需要的朋友可以參考下
    2023-01-01
  • Vue實現(xiàn)雙token無感刷新的示例代碼

    Vue實現(xiàn)雙token無感刷新的示例代碼

    這篇文章主要介紹了Vue實現(xiàn)雙token無感刷新,雙token機制,尤其是指在OAuth 2.0授權(quán)協(xié)議中廣泛使用的access token(訪問令牌)和refresh token(刷新令牌)組合,文中通過代碼示例講解的非常詳細,需要的朋友可以參考下
    2024-03-03
  • Vue2項目配置@指向src路徑方式

    Vue2項目配置@指向src路徑方式

    這篇文章主要介紹了Vue2項目配置@指向src路徑方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-12-12
  • vue篇之事件總線EventBus使用示例詳解

    vue篇之事件總線EventBus使用示例詳解

    這篇文章主要為大家介紹了vue篇之事件總線EventBus使用示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-09-09

最新評論