for in 循环

Posted 李美玲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for in 循环相关的知识,希望对你有一定的参考价值。

  this.$ajax.post(this.$httpConfig.config.rolelist, params)
          .then(res => {
            if (res.data.code === 2000) {
              this.searchRoleList = res.data.data.list;
              let result = [],//定义一个数组
                tmpData = this.searchRoleList;//要循环的对象
              for (let index in tmpData) {
                result.push({‘id‘: tmpData[index].roleId, ‘value‘: tmpData[index].roleName});//将你要的id和value以对象的形式追加到数组里
              }

              cb(result);
            }
          })
          .catch(res => {
            this.searchRoleList = [];
            cb(this.searchRoleList);
          });

以上是关于for in 循环的主要内容,如果未能解决你的问题,请参考以下文章

在 Activity 内部,如何暂停 for 循环以调用片段,然后在按钮单击片段后恢复循环以重新开始

JavaScript for...in 循环

JavaScript for...in 循环

Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段

JS中for...in 语句用于对数组或者对象的属性进行循环操作吗?

循环 - forEach、for、for....of、for...in