我正在学习角度问题,并且从服务中获取数据时遇到问题。这是我的代码..
component.ts中的代码
import { Component, OnInit, Input } from '@angular/core';
import { RegisterService } from '../services/register.service';
@Component({
selector: 'app-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.scss']
})
export class RegisterComponent implements OnInit {
contact:string;
constructor(private data : RegisterService) { }
ngOnInit() {
}
onSubmit(f){
console.log('value from component.ts',f.value)
if(f.valid){
// "username":username,
// "email":email,
// "password":password,
// "c_password":c_password,
// "contact":contact,
// "type":"user"
// }
console.log('type',f.value.type)
this.data.register(f.value.name,f.value.email,f.value.password,f.value.c_password,f.value.conatct,f.value.type)
.subscribe(res => {
console.log(res)});
}
}
}
问题在于从服务中获取数据。
service.ts中的代码是
import { Injectable } from '@angular/core';
import { HttpHeaders, HttpClient } from '@angular/common/http';
import { Body } from '@angular/http/src/body';
@Injectable({
providedIn: 'root'
})
export class RegisterService {
API_URL = "http://..";
constructor(private http: HttpClient) { }
register(name,email,password,c_password,contact,type){
let body ={
"name":name,
"email":email,
"password":password,
"c_password":c_password,
"contact":contact,
"type": 'user'
}
console.log('body from service',body);
const headers = new HttpHeaders({
"Accept" : 'application/json',
"Content-Type" : 'application/json'
})
return this.http.post(this.API_URL+"register",body,{headers :headers});
}
}
此处联系在控制台中返回未定义。我是angular 6的新手。控制台的屏幕快照将添加到此处。 The screenshot of console
答案 0 :(得分:0)
问题是我拼错了“ f.value.contact”。现在可以了
答案 1 :(得分:-1)
发送f.value并重试,而不是将每个值发送给服务。 检查控制台日志,您应该获取从component.ts传递到service.ts的所有数据