- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Typescript 新手,我正在创建成本计算器应用程序。我有 8 个问题作为单独的组件和总成本组件。每个问题有 3 个不同的选项可供选择。选择选项后,我希望总成本随着用户在问题中的进展而累加。一旦用户回答了最终问题,我就会总结向他展示总成本。
我做了研究并找到了不同的答案,但似乎没有一个对我有用。大部分答案都是JS的。
我尝试使用rxjs/BehaviorSubject
库但出现错误。这是我的代码。
totalCost.component.ts
import { Component, Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/internal/BehaviorSubject';
@Component({
selector: 'totalcost',
template: `<div>
<p>Total: {{totalCost}}
</div>`
})
@Injectable({
providedIn: 'root'
})
export class TotalCost {
private totalCost = new BehaviorSubject<number>(0);
currentCost = this.totalCost.asObservable();
constructor(){
}
addCost(add: number){
this.totalCost.next(add);
console.log('addCost');
return this.totalCost;
}
}
这是第一个问题组成部分:
import { Component, OnInit, Injectable } from '@angular/core';
import { TotalCost } from '../totalCost/totalCost.component';
@Injectable({
providedIn: 'root'
})
@Component({
selector: 'first',
templateUrl: './first.component.html',
styleUrls: ['./first.component.scss']
})
export class First {
totalCost: number;
constructor(private cost: TotalCost){
}
ngOnIt(){
this.cost.currentCost.subscribe(totalCost => this.totalCost = totalCost )
}
addToCost(value: number){
this.cost.addCost(value);
console.log('addToCost()');
}
}
这是第一个问题的 HTML:
<div class="container-fluid text-center">
<div>
<h3>Choose The Type Of Website</h3>
<input type="range" value="1000" id="budget">
<p>
<span>
<a [routerLink]="'/second'" (click)="addToCost(1000)"><img src="" alt="static"></a>
</span>
<span>
<a [routerLink]="'/second'" ><img src="" alt="Dynamic"></a>
</span>
<span>
<a [routerLink]="'/second'" ><img src="" alt="E-Commerce"></a>
</span>
</p>
</div>
</div>
当用户选择其中一个选项时,我希望总成本相加,直到用户到达最后一个问题。
这就是我的应用程序的样子
最佳答案
你可以这样尝试。
创建一项包含您的主题的公共(public)服务。
common.service.ts
@Injectable({
providedIn: 'root'
})
export class CommonService {
private totalCost = new BehaviorSubject<number>(0);
sendMessage(data: any) {
this.totalCost.next(data);
}
getMessage(): Observable<any> {
return this.totalCost.asObservable()
}
}
ComponentA//要发送数据的组件
export class ComponentA {
// here we are adding our common service which contain our subject
constructor(private brodcaster: CommonService){}
sendData(data) {
this.brodcaster.sendMessage(data);
}
ComponentB//要访问数据的组件
export class ComponentA {
// here we are adding our common service which contain our subject
constructor(private brodcaster: CommonService){
this.brodcaster.getMessage().subscribe(response => {
console.log(response);
})
}
关于javascript - 如何与 Angular 8 中的其他组件通信以添加总计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59278262/
我需要一些帮助。 我希望“总计”由“数量*价格=总计”计算(到目前为止没问题)。问题是我还需要通过“总/价格=数量”来计算“数量”,即如果一个字段发生更改,另一个字段也会自动更改。 我做了一个非常简单
我的项目即将结束,但在解决它时遇到了一些问题。我是一名厨师,想要自己的应用程序与他自己的业务相关 我的表单称为“菜谱”,并包含数量、单价、使用百分比。 假设您有 1 公斤苹果,价格为 5 欧元。清洁结
我的数据库表是: 产品展示 - ID - 名称 ... 订单 - ID - 状态 ... OrderItems - ID -order_id -product_id -数量 -line_total 我
我的项目即将结束,但在解决它时遇到了一些问题。我是一名厨师,想要自己的应用程序与他自己的业务相关 我的表单称为“菜谱”,并包含数量、单价、使用百分比。 假设您有 1 公斤苹果,价格为 5 欧元。清洁结
exchanges表结构: id exchange created_at updated_at deleted_at start_time
我正在开发 Telerik RadGrid,网格内有多个 radtextbox,如 A、B、C 和 D。我使用带有正则表达式验证的 radtextbox 来验证带有数字的 A、B 和 C 文本框。然而
我有一个非常简单的$lookup聚合查询,如下所示: {'$lookup': {'from': 'edge', 'localField': 'gid', 'foreignField': 't
我正在尝试做一些与我之前问过的问题非常相似的事情,但我似乎无法让它正常工作。这是我之前的问题:How to get totals per day 表格如下: Table N
[更新] 谢谢大家,最终代码: var EUR_share_cost = 0; var USD_share_cost = 0; var GBP_shar
由于某种原因,下面的这部分代码没有将每个数组项添加到一起。我单步执行调试器,正在创建并递增数组项,但 total += ScoreArray[i]; 似乎没有将已输入的数字相加。相反,我只是将第一个输
我在这里有点迷路了。我有一个 for 循环,它增加一个值,如下所示: int nu01 = 10000; int level = 0; int increase = 35000; for (int i
请引用之前的问题:Sum total for column in jQuery 我使用了 Aymen 的解决方案,但我对其进行了编辑以满足我的需要。它停止工作,我的代码如下所示,在 jsfiddle
Date Flight ID Member ID Seat Type Seat Price 2013-07-28 F71498 M692
我希望程序忽略零总数。我正试图阻止向非参与者提供零总数的汽车奖励。我在 && 运算符后面添加了 >= 表达式。这对于击杀数和净值来说正确吗? $fetch_nor_killers = mysq
我有下表: CREATE TABLE zoom (`id` int, `fb_id` int, `date` datetime); INSERT INTO zoom (`id`, `f
我想知道是否有一种方法可以将已计算的派生列的总和添加到新列中。 Employee_KT_State --------------------------------------------------
在 SQL 中,我想获得来自每个用户的网站点击率的百分比。为此,我需要获取 site hits 列的总和,但我的查询在另一列上使用了 GROUP By。 除了 GROUP BY 中的每个 user_i
我有以下查询: SELECT SUM(case when s1 = 'fel' then 1 else 0 end) as s1_count, SUM(case when s2 = '
我已经使用 HTML 创建了一个表格。该表由一个标题和许多称为 Family 的行组成。每个家庭行可以有许多行代表家庭的各个成员(请参见下面的代码)。 Family N
如何使用 javascript 给出 float 总计。请 friend 们帮助我。 function addNumbers() {
我是一名优秀的程序员,十分优秀!