【发布时间】:2018-05-31 03:15:10
【问题描述】:
我很困惑如何计算我拥有的数据 json。我有数据 json “id”:“001”,“item”:“samsung”,“quantity”:2,“price”:300 美元。首先我想计算小计=数量*价格。那行得通。但我不知道如何计算总数。有人可以帮忙吗? 这是保存数据json的js
export function DataBarang () {
return [{
"id" : "001",
"item" : "samsung",
"quantity" : 1,
"price" : 300,
},
{
"id" : "002",
"item" : "iphone",
"quantity" : 2,
"price" : 450,
}];
}
这是显示数据的表格
import React, { Component } from 'react';
import { DataBarang } from './Barang';
class cart extends Component{
constructor(props) {
super(props)
this.state = {
json: []
}
}
componentDidMount() {
this.setState((prevState) => {
return {
json: DataBarang()
}
})
}
render (){
return (
<table id="cart" className="table table-hover table-condensed">
<thead>
<tr>
<th styles="width:50%" className="text-center">Item</th>
<th styles="width:10%" className="text-center">Price</th>
<th styles="width:8%" className="text-center">Quantity</th>
<th styles="width:22%" className="text-center">Subtotal</th>
<th styles="width:10%" className="text-center">Action</th>
</tr>
</thead>
<tbody>
{this.state.json.map((data, i) => {
var subtotal = data.price*data.quantity;
var total = total+subtotal;
return (
<tr key={i}>
<td data-th="Product">
<div className="row">
<img src={} alt="..." className="img-responsive"/>
<div className="col-sm-10">
<h4 className="nomargin">{data.item}</h4>
</div>
</div>
</td>
<td data-th="Price">Rp.{data.price}</td>
<td data-th="Quantity">
<input type="number" className="form-control" value={data.quantity}/>
</td>
<td data-th="Subtotal" className="text-center">Rp.{subtotal}</td>
<td className="actions" data-th="">
<button className="button is-danger"><i className="fa fa-trash-o"></i></button>
</td>
</tr>);
})}
</tbody>
<tfoot>
<tr>
<td><Link to ="/" className="button is-warning"><i className="fa fa-angle-left"></i> Lanjut Berbelanja</Link></td>
<td colspan="2" className="hidden-xs"></td>
<td className="hidden-xs text-center"><strong>Total Rp. {}</strong></td>
<td><a href="#" className="button is-success">Checkout <i className="fa fa-angle-right"></i></a></td>
</tr>)
</tfoot>
</table>
);
}
}
export default cart;
并告诉我如何使用 button () onClick 删除数据
【问题讨论】:
-
删除数据是什么意思?什么被渲染,什么激活它,什么被卸载/删除?
-
要删除 ui 级别的数据,只需将其从状态中删除即可。但我想你必须从数据库中删除数据。在这种情况下,最好的方法是使用通量库之一并根据其工作流程进行
-
@Andrew 我想删除函数 DataBarang() 中的数据。我在表格中显示了该数据,并创建了一个按钮来删除表格中每个数据中的数据。
-
@ZoreslavGoral 只是在 ui 上删除。因为我只是在我的 ui 上做一个测试。并且还没有连接到后端和数据库
-
啊,我明白了。给我一点。
标签: javascript json reactjs frontend