我正在使用Angular7。我想在打字稿中获取并设置变量
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class LoginService {
public username:string;
public token:string;
public fullname:string;
constructor() { }
set setUser(val: string){
this.username = val;
}
set setToken(val:string){
this.token=val;
}
set setFullName(val:string){
this.fullname=val;
}
get getUser():string{
return this.username;
}
get getToken():string{
return this.token;
}
get getFullName():string{
return this.fullname;
}
}
fLogin(user, pass) {
this.users.setUser=user;
}
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';
import { Http, Headers } from "@angular/http";
import {LoginService} from "../login.service"
import { NgLocalization } from '@angular/common';
@Component({
selector: 'app-customers',
templateUrl: './customers.component.html',
styleUrls: ['./customers.component.css']
})
export class CustomersComponent implements OnInit {
constructor(public user:LoginService) {
}
loadData() {
console.log(this.user.getUser)
}
ngOnInit() {
this.loadData();
}
}
我希望在 Login.Component.ts 中设置值,并在 Customer.Component.ts
中获取值它是如何工作的还是其他的?
答案 0 :(得分:1)
1)确保您的login.component.ts文件也注入了服务。
constructor(public user:LoginService)
2)确保没有模块或组件具有包含您的服务的providers
数组。
如果您按原样使用providedIn: 'root'
注册服务,并且不要在任何providers
数组中再次注册服务,则该服务应为单例并按预期工作。
此外,您的getter和setter的命名是不正确的。 getter和setter应该具有 same 名称,因为它们只是定义属性的另一种方式:
get user():string{
return this.username;
}
set user(val: string){
this.username = val;
}
get token():string{
return this.token;
}
set token(val:string){
this.token=val;
}
get fullName():string{
return this.fullname;
}
set fullName(val:string){
this.fullname=val;
}
然后,您就可以像访问其他任何声明的属性一样访问这些getter / setter属性。
this.fullName = "Joe Smith"; // to set the value and call the setter
console.log(this.fullName); // to reference the value.
在您的客户部分:
constructor(public loginService:LoginService) {
}
loadData() {
console.log(this.loginService.user)
}
注意:我重命名了您的构造函数参数,以更好地识别它。
在您的登录组件中:
constructor(public loginService:LoginService) {
}
fLogin(user, pass) {
this.loginService.user = user;
}
答案 1 :(得分:0)
您只需要具有两个相同的功能,一个具有前缀集,另一个具有前缀get:
****in the Service User
private name: string;
public get info() {
return name;
}
public set info(val) {
this.name = val;
}
************ usage in other components or services
this.User.info = 'your name'; // for set
const yourName = this.User.info; // for get