美文网首页
Vue中v-for中动态字符串拼接

Vue中v-for中动态字符串拼接

作者: 闫小兀 | 来源:发表于2017-07-07 11:58 被阅读2461次

      小问题,小问题,小问题,不过我要搞事情,开发项目过程遇到Vue中字符串拼接问题,网上搜了挺乱,我来说下我解决总结的几点.

    关键点

    • 1.img中的src的字符串动态拼接
    • 2.style中的background属性赋值

    一.img中的src的字符串动态拼接

    • 1.问题是这样子的,瞧瞧
      基本网络链接 : http://openweathermap.org/img/w/02n.png ; 但是了字符'02n'是动态的,切换它可以获取不同的天气图片,如果这样的链接在vue的v-for中该如何拼接字符串了,下解:

    • 2.解决这个问题

      • 方法一(你可以这样写)
       <ul>
          <li v-for='item in weatherArr'>
                ![]('http://openweathermap.org/img/w/'+item.weather[0].icon+'.png')
            </li>
        </ul>
      
      • 方法二(你还可以这样写:es6的语法)
          <ul>
              <li v-for='item in weatherArr'>
                  <img :src=`http://openweathermap.org/img/w/${item.weather[0].icon}.png`>
                </li>
        </ul>
      

    二.style中通过background设置背景图片

    • 写法和上面类似,就是拼接字符串,直接上代码吧
        <ul>
            <li class="imgStyle" v-for='item in items' :style="{background:'url('+item.imgURL+')'}"></li>
         </ul>
    

    完整代码点这儿

    相关文章

      网友评论

          本文标题:Vue中v-for中动态字符串拼接

          本文链接:https://www.haomeiwen.com/subject/gpplhxtx.html