本文介绍了如何使字符串在角度4中保持不变?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的服务中,我正在使用http
帖子.我想将URL设置为常量.
In my service, I am using a http
post. I want to set the URL as a constant.
return this.http.get(this.config.API_URL+'users', options).map(res=>res.json());
我尝试过一项服务:
import {Injectable} from '@angular/core';
@Injectable()
export class AppService {
API_URL :String;
constructor() {
this.API_URL = 'some url';
}
}
在Angular4中还有其他方法可以使值恒定吗?
Is there any other method to make a constant value in Angular4 ?
推荐答案
我不确定我是否理解您的问题,但是如果您想创建常量,则可以在其他类中进行处理并将其导入.
I'm not sure if i understand your question but if you want to create constants, you can do it in a different class and import it.
constants.ts
constants.ts
export class Constants {
public static get HOME_URL(): string { return "sample/url/"; };
}
sample.component.ts
sample.component.ts
import { Constants } from "./constants";
@Component({
})
export class SampleComponent {
constructor() {
let url = Constants.HOME_URL;
}
}
这篇关于如何使字符串在角度4中保持不变?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!