- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
单例服务构造函数在 nativescript-schematics 代码共享项目中被多次调用。这是我的 package.json 中的一些重要依赖项版本:
“tns-android”:{“版本”:“5.0.0”}
"@angular/core": "~7.1.0",
"nativescript-angular": "^7.1.0",
"tns-核心模块": "^5.0.5",
"@nativescript/schematics": "^0.4.0",
"nativescript-dev-typescript": "^0.7.8",
"nativescript-dev-webpack": "^0.17.0",
“ typescript ”:“~3.1.1”
我已经尝试过在 angular official docs 中描述的 providedIn: 'root'
并检查 singletonInstance 。构造函数被多次调用。
@Injectable({ providedIn: 'root'})
export class UserService {
constructor(private _http: HttpClient) {
if (!UserService.singletonInstance) {
console.log('in user service constructor');
UserService.singletonInstance = this;
} else {
return UserService.singletonInstance;
}
}
我需要使用 forRoot 吗?因为我们有 app.module.ts 和 app.module.tns.ts 吗?
最佳答案
@Injectable({ providedIn: 'root'})
export class UserService {
constructor(private _http: HttpClient) {
}
}
上面的代码就够了。你需要在 Controller 中导入 UserService,比如
@import UserService from ...;
class MyController{
constructor(private userService: UserService){}
}
关于angular - NativeScript Schematics - 多次调用单例服务构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53808162/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!