ionic数组总结

前言:最近一直开发ionic,今天我们来谈谈对于数据的获取请求之类的总结:

  1. 我们如何获取data里面的数据呢?
 this.teachAllStudent = [];  // 首先需要先置数组
      // 查询后端课程
      const dataClassURl = 'exam-web/EvaluationPaper/selectStudentByteachclassID/' + item;
      this.http.get(dataClassURl).subscribe(
        res => {
          if (res.json().code === '0000' && res.json().message === '查询成功' ) {
            // 获取我们data里面的具体内容显示出来
            for (let i = 0 ; i < res.json().data.length; i++) {
              this.teachAllStudent.push(res.json().data[i].stuName);
            }
            // 我们用数组去push里面的内容,其中stuName是我们后台传过来数组中的其中一个字段
          }
        });

显示结果:
在这里插入图片描述

  1. 我们设置一个实体临时存放数组传入后台:
 // 需要传递的参数
    const body = JSON.stringify({

      // courseId: localStorage.getItem('courseId'),
      // courseName: localStorage.getItem('courseName'),
      // endTime: new Date('yyyy-MM-dd HH:mm:ss'),
      // evaluationPaperId: localStorage.getItem('evaluationPaperId'),

      // schoolYearId: localStorage.getItem('schoolYearId'),
      // startTime: new Date('yyyy-MM-dd HH:mm:ss'),
      // status: 0,
      // studentIds: this.classIdList,
      // studentIds: this.teachAllStudent,
      // studentIds: '1',
      // teacherId: localStorage.getItem('userId'),

      courseId: '111',
      courseName: '111',
      endTime: '2019-07-04 00:00:00',
      evaluationPaperId: '111',
      id: '111',
      schoolYearId: '111',
      startTime: '2019-07-04 00:00:00',
      status: 0,
      // studentIds: this.classIdList,
      studentIds: this.teachAllStudent,
      // studentIds: '111',
      teacherId: '111',
      teacherName: '111'

    });
  1. 我们如何从html页面传递过数据给方法使用:
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值