gpt4 book ai didi

javascript - RHS 分配优于 LHS 操作

转载 作者:行者123 更新时间:2023-12-02 14:47:49 25 4
gpt4 key购买 nike

sap.ui.core.Control.extend("control.linechart", { 
/* the control API */
metadata : {
properties : {
"items" : { type: "any" },
"height" : {type: "int"},
"width" : {type: "int"},
"popup" : {type: "any"}
},
events: {
"select" : {},
"selectEnd": {}
}
},

// the part creating the HTML:
renderer : function(oRm, oControl) { // static function, so use the given "oControl" instance instead of "this" in the renderer function
oRm.write("<div");
oRm.writeControlData(oControl); // writes the Control ID and enables event handling - important!
oRm.addClass("lineChart"); // add a CSS class for styles common to all control instances
oRm.writeClasses(); // this call writes the above class plus enables support for my.Bubble.addStyleClass(...)
oRm.write(">");
oRm.write("</div>");
},
onAfterRendering: function() {
data = this.getItems();
//alert(JSON.stringify(this.getItems()));
var passedheight = this.getHeight();
//var containerWidth = jQuery.sap.byId(this.oParent.sId).width() || 800; // gets super parent width
var containerWidth = $("#"+this.getId()).parent().width(); // gets immediate parent width
var margin = {top: 15, right: 30, bottom: 20, left: 30},
width = containerWidth- margin.left - margin.right,
height = passedheight - margin.top - margin.bottom;

var parseDate = d3.time.format("%d-%b-%y %H:%M %p").parse;

var x = d3.time.scale().range([0, width]);

var y = d3.scale.linear()
.range([height, 0]);

var color = d3.scale.category10();

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");

var yAxis = d3.svg.axis()
.scale(y)
.orient("left").ticks(4).tickSize(-width, 0, 0);

var line = d3.svg.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.tonneValue); });

var svg = d3.select("#"+this.getId()).append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

color.domain(d3.keys(data[0]).filter(function(key) { return key !== "date"; }));

data.forEach(function(d) {
d.date = parseDate(d.date);
});

var wsfs = color.domain().map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {date: d.date, tonneValue: +d[name]};
})
};
});

x.domain(d3.extent(data, function(d) { return d.date; }));

y.domain([
d3.min(wsfs, function(c) { return d3.min(c.values, function(v) { return v.tonneValue; }); }),
d3.max(wsfs, function(c) { return d3.max(c.values, function(v) { return v.tonneValue; }); })
]);

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svg.append("g")
.attr("class", "y axis")
.call(yAxis);

var wsf = svg.selectAll(".wsf")
.data(wsfs)
.enter().append("g")
.attr("class", "wsf");

wsf.append("path")
.attr("class", "line")
.attr("d", function(d) { return line(d.values); })
.style("stroke", function(d) { return color(d.name); });

var legendNames = d3.keys(data[0]).filter(function(key) { return key !== "date" });

data.forEach(function(d) {
d.ages = legendNames.map(function(name) { return {name: name, value: +d[name]}; });
});
var legend = svg.selectAll(".legend")
.data(legendNames.slice())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });

legend.append("rect")
.attr("x", width - 18)
.attr("width", 18)
.attr("height", 4)
.style("fill", function(d) {return color(d); });

legend.append("text")
.attr("x", width - 24)
.attr("y", 6)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d; });
},
});

在整个程序中,为什么右侧值正在变化,即当我执行 data = this.getItems(); 时,我假设 this.getItems 被分配给 数据。但是数据是在程序的其余部分进行操作的,但是当再次调用 oAfterRendering 时,我得到了变量 data 中的被操作数据。当 data 是被操作的属性时,如何操作 this.getItems() 即 items 属性。由于使用 Openui5 和自定义控件,因此无法保存某些临时变量中的数据。

最佳答案

当您从函数返回一个对象时,JavaScript 不会复制该对象,而是返回对该对象的引用(类似于 C 中的指针)。

这意味着如果它被修改,它将反射(reflect)在指向它的所有变量中。

这对于数组和其他对象来说是相同的行为。

Anything to avoid that.

您可以返回 clone的对象。根据对象的复杂程度,可能需要深度克隆。请记住,不应经常这样做,因为它可能会影响性能。

在 ES6 中创建浅层克隆(实际上只是复制属性,克隆任何对象在 JavaScript 中更加细致)的简单方法是......

var cloned = Object.assign({}, objectToBeCloned); 

关于javascript - RHS 分配优于 LHS 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36446463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com