zoukankan      html  css  js  c++  java
  • 处理数据

    个人中心的地址栏里 需要点击选择地址。我用的UIActionSelector 模块,将三级联动的地址都遍历出来后 在后面 拼接了 '-' 符号,将每一级地址隔开,但是最后多了一个 于是我就用substring 将最后多的 - 符号给删除了 

    js

    如何根据自己需要截取字符串 1  
    //将地址遍历出来

    for (var i = 0; i < selectedInfo.length; i++) { 2 selectedInfo_html += 3 ''+ret.selectedInfo[i].name+'-'; 4 } 5 6 7 console.log(selectedInfo_html);
    //将最后一个字符串去掉
    8 var aa = selectedInfo_html.substring(0,selectedInfo_html.length-1); 9 console.log(aa); 10 $api.byId('adress').value = aa;

    2019-11-7
    如何将字符串转为数组
    //  var text = "1,2,3,4,5";var array = text.split(",");
    // 
     this.defaultChecked = (res.data.auth).split(',')  // 后台返回的是字符串  将字符串转为数组
     
    // 如果后台返回的是 123 需要站换成 普通  个人 企业
         let a = {0:'普通用户',1:'个人用户',2:'企业用户'}
            let b = row.user_type
            return a[b]
     
     


  • 相关阅读:
    Python运算符
    Python中的变量
    Chapter 4. Working with Key/Value Pairs
    Chapter 3. Programming with RDDs
    python常见的特异点
    18.天知道练习
    17.vue+axios搭配使用
    16.axios基本使用
    15.记事本练习
    14.v-model指令
  • 原文地址:https://www.cnblogs.com/zfdbk/p/10308144.html
Copyright © 2011-2022 走看看