当前位置:   article > 正文

Vue(十二):脚手架配置代理,github案例,插槽

Vue(十二):脚手架配置代理,github案例,插槽

一、脚手架配置代理

老师讲的主要有两种方法: 

但是我的没有proxy,只有proxyTable,之前一直不成功,现在我是这样配置的:

config文件夹下的index.js:

App.vue:

然后就成功了:(我真服了,之前在这里卡了两天,现在莫名其妙就好了) 

二、github案例 

从https://api.github.com/search/users?q=xxx请求数据过来,然后点击搜索按钮可以显示所有github用户,咋做呢?


1、首先拆分html和css,这块儿直接用现成的,需要注意的是bootstrap样式需要在public下新建css文件夹粘贴bootstrap.css,然后去index.html引入,直接import会有问题(不知道为什么我的bootstrap无效没作用)
2、使用全局事件总线把请求的数据给List并使用v-for展示到页面
3、这里如果再完善一点,一上来显示欢迎词,发请求前显示loading,请求发送完若成功显示数据,失败则显示失败信息。这样的话在传数据时就要在不同的事件节点去触发全局事件并且传不同的值,比较好的做法是数据配置到对象里,传值也传一个对象,这样写起来比较方便。各个文件如下:

index.html 

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <!-- 引入bootstrap但是不知道为什么我的无效 -->
  7. <link rel="stylesheet" href="./css/bootstrap.css">
  8. <title>testtwo</title>
  9. </head>
  10. <body>
  11. <div id="app"></div>
  12. <!-- built files will be auto injected -->
  13. </body>
  14. </html>

App.vue

  1. <template>
  2. <div class="container">
  3. <Search></Search>
  4. <List></List>
  5. </div>
  6. </template>
  7. <script>
  8. import Search from './components/Search.vue'
  9. import List from './components/List.vue'
  10. export default {
  11. name:'App',
  12. components:{Search,List}
  13. }
  14. </script>

Search.vue

  1. <template>
  2. <section class="jumbotron">
  3. <h3 class="jumbotron-heading">Search Github Users</h3>
  4. <div>
  5. <input type="text" placeholder="enter the name you search" v-model="keyWord"/>&nbsp;
  6. <button @click="searchUsers">Search</button>
  7. </div>
  8. </section>
  9. </template>
  10. <script>
  11. import axios from 'axios';
  12. export default {
  13. name: 'Search',
  14. data(){
  15. return{
  16. keyWord:''
  17. }
  18. },
  19. methods:{
  20. searchUsers(){
  21. // 请求前更新List的数据
  22. this.$bus.$emit('updataListData',{isFirst:false,isLoading:true,errMsg:'',users:[]})
  23. axios.get(`https://api.github.com/search/users?q=${this.keyWord}`).then(
  24. response => {
  25. // 请求成功更新List的数据
  26. console.log('请求成功了');
  27. this.$bus.$emit('updataListData', { isLoading: false, errMsg: '', users: response.data.items })
  28. },
  29. error => {
  30. // 请求失败更新List的数据
  31. // console.log('请求失败了',error.message);
  32. this.$bus.$emit('updataListData', { isLoading: false, errMsg:error.message, users:[]})
  33. }
  34. )
  35. }
  36. }
  37. }
  38. </script>
  39. <style>
  40. </style>

List.vue

  1. <template>
  2. <div class="row">
  3. <!-- 展示用户列表 -->
  4. <div v-show="info.users.length" class="card" v-for="user in info.users" :key="user.login">
  5. <a :href="user.html_url" target="_blank">
  6. <img :src="user.avatar_url" style='width: 100px'/>
  7. </a>
  8. <p class="card-text">{{ user.login }}</p>
  9. <!--展示欢迎词-->
  10. <h1 v-show="info.isFirst">欢迎使用!</h1>
  11. <!--展示加载中-->
  12. <h1 v-show="info.isLoading">加载中....</h1>
  13. <!--展示错误信息-->
  14. <h1 v-show="info.errMsg">{{ errMsg }}</h1>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name:'List',
  21. data(){
  22. return{
  23. info:{
  24. isFirst: true,
  25. isLoading: false,
  26. errMsg: '',
  27. users: []
  28. }
  29. }
  30. },
  31. mounted() {
  32. this.$bus.$on('updateListData', (dataObj) => {
  33. // es6语法,就是把info的四个都放在这里,然后dataobj的改变的在替换info有的
  34. this.info = {...this.info,...dataObj}
  35. console.log(this);
  36. })
  37. },
  38. }
  39. </script>
  40. <style scoped>
  41. .album {
  42. min-height: 50rem; /* Can be removed; just added for demo purposes */
  43. padding-top: 3rem;
  44. padding-bottom: 3rem;
  45. background-color: #f7f7f7;
  46. }
  47. .card {
  48. float: left;
  49. width: 33.333%;
  50. padding: .75rem;
  51. margin-bottom: 2rem;
  52. border: 1px solid #efefef;
  53. text-align: center;
  54. }
  55. .card > img {
  56. margin-bottom: .75rem;
  57. border-radius: 100px;
  58. }
  59. .card-text {
  60. font-size: 85%;
  61. }
  62. </style>

三、vue-resource(了解)

在vue1.0时这个用的比较多,但是现在用axios比较多了,这个了解下就行,其实这玩意儿和axios很像,就把axios.get换成this.$http.get,其他的都一样
安装vue-resource :npm i vue-resource
引入插件:import vueResource from 'vue-resource'
使用插件:Vue.use(vueResource)

案例:

  1. this.$http.get('http://localhost:8081/api2/cars').then(
  2. response => {
  3. console.log('请求成功了',response.data)
  4. },
  5. error => {
  6. console.log('请求失败了',error.message)
  7. }

四、插槽

1、作用:让父组件可以向子组件指定位置插入html结构,也是一种组件间通信的方式,适用于 父组件 ===> 子组件 。

2、分类:默认插槽、具名插槽、作用域插槽

1、默认插槽

比如有那么一天,我们要在页面显示三个类别,每个类别下面有不同的文字,本来是我们把数据传给子组件然后使用v-for遍历生成的文字信息,但是产品经理突然让你把美食类的下面换成图片,电影类下面换成视频,怎么搞?

有个非常好用的方法就是插槽,也就是使用slot标签在子组件挖个坑,然后在父组件的vc标签里面写东西往里边填
子组件Category:

  1. <template>
  2. <div class="Category">
  3. <h3>{{title}}分类</h3>
  4. <slot>我是一个默认值,当没有传具体结构时,我会出现</slot>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name:'Category',
  10. props:['title','listData']
  11. }
  12. </script>
  13. <style>
  14. .Category{
  15. background-color: skyblue;
  16. width: 200px;
  17. height: 300px;
  18. }
  19. h3{
  20. text-align: center;
  21. background-color: orange;
  22. }
  23. </style>

 App.vue

  1. <template>
  2. <div class="container">
  3. <Category title="美食" :listData="foods">
  4. <img src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt="">
  5. </Category>
  6. <Category title="游戏">
  7. <ul>
  8. <li v-for="(g, index) in games" :key="index">{{ g }}</li>
  9. </ul>
  10. </Category>
  11. <Category title="电影">
  12. <video controls src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video>
  13. </Category>
  14. </div>
  15. </template>
  16. <script>
  17. import Category from './components/category.vue'
  18. export default {
  19. name:'App',
  20. components:{Category},
  21. data(){
  22. return {
  23. foods: ['火锅','烧烤','小龙虾','牛排'],
  24. games:['红色警戒','穿越火线','劲舞团','超级玛丽'],
  25. films:['《教父》','《拆弹专家》','《你好,李焕英》','《尚硅谷》']
  26. }
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. .container{
  32. display: flex;
  33. justify-content: space-around;
  34. }
  35. video{
  36. width: 100%;
  37. }
  38. img{
  39. width: 100%;
  40. }
  41. </style>

2、具名插槽

子组件 

  1. <slot name="center">我是一个默认值,当没有传具体结构时,我会出现1</slot>
  2. <slot name="footer">我是一个默认值,当没有传具体结构时,我会出现2</slot>

 父组件

  1. <template>
  2. <div class="container">
  3. <Category title="美食" :listData="foods">
  4. <img slot="center" src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt="">
  5. <a slot="footer" href="#">美食</a>
  6. </Category>
  7. <Category title="游戏">
  8. <ul slot="center">
  9. <li v-for="(g, index) in games" :key="index">{{ g }}</li>
  10. </ul>
  11. <div class="foot" slot="footer">
  12. <a href="#">单机游戏</a>
  13. <a href="#">单机游戏</a>
  14. </div>
  15. </Category>
  16. <Category title="电影">
  17. <video slot="center" controls src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video>
  18. <template v-slot:footer>
  19. <!-- 只有template才能这样写 -->
  20. <div class="foot">
  21. <a href="#">经典</a>
  22. <a href="#">2024</a>
  23. <a href="#">热们</a>
  24. </div>
  25. <h4>欢迎观影</h4>
  26. </template>
  27. </Category>
  28. </div>
  29. </template>

 

3、作用域插槽

如果数据不在App中了,而在Category.vue中,然后App.vue要用到数据,这时我们就可以在Category.vue中使用slot标签给父组件App传值,写法很像当时父给子传值的props写法,在标签里搞个:games="games",然后用到插槽的地方必须使用template标签包裹,并且配置scope属性来接收数据,接过来的是一个对象

其实这个功能使用默认插槽完全可以实现,但是默认插槽是指数据在使用插槽的文件里的,那么如果数据在别的地方(比如本案例的Category.vue文件),就得用作用域插槽

数据在Category.vue

  1. <template>
  2. <div class="Category">
  3. <h3>{{title}}分类</h3>
  4. <slot :games="games">我是一个默认值,当没有传具体结构时,我会出现</slot>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name:'Category',
  10. props:['title'],
  11. data() {
  12. return {
  13. games: ['红色警戒', '穿越火线', '劲舞团', '超级玛丽']
  14. }
  15. }
  16. }
  17. </script>

 App.vue

  1. <template>
  2. <div class="container">
  3. <Category title="游戏">
  4. <template scope="cgp">
  5. <!-- {{ cgp.games }} -->
  6. <ul>
  7. <li v-for="(g, index) in cgp.games" :key="index">{{ g }}</li>
  8. </ul>
  9. </template>
  10. </Category>
  11. <Category title="游戏">
  12. <template scope="{games}">
  13. <!-- es6语法 -->
  14. <ol>
  15. <li v-for="(g, index) in games" :key="index">{{ g }}</li>
  16. </ol>
  17. </template>
  18. </Category>
  19. <Category title="游戏">
  20. <template slot-scope="{games}">
  21. <h4 v-for="(g, index) in games" :key="index">{{ g }}></h4>
  22. </template>
  23. </Category>
  24. </div>
  25. </template>

总结: 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/432995
推荐阅读
相关标签
  

闽ICP备14008679号