요소 추출 표 대응 id 데이터

908 단어 vueelement
제1종 서법
  
editor(row) {
				this.dialogTableVisible = true;
				this.id = row.id;								
				var item = this.tableData[this.id - 1];
				this.form.name = item.name;
				this.form.mobi = item.mobi;
				this.form.account = item.account;
				this.form.line = item.line;													
			}

두 번째 쓰기
  
editor(row) {
				this.dialogTableVisible = true;
				this.id = row.id;
				this.$axios({
					url: api/index.php/admin/mod/' + this.id,
					method: 'post'
				}).then(res => {
//					console.log(res.data.name);
					var item = res.data;
					this.form.name = item.name;
					this.form.mobi = item.mobi;
					this.form.account = item.account;
					this.form.line = item.line;									
				}).catch(err => {
					console.log(err)
				})
			}

좋은 웹페이지 즐겨찾기