我只需要复制data.notes
的值。我使用下面的代码。但仍然detailsOfCurrentNotes
值根据data.notes
的值而变化。你能告诉我怎么做吗?
notes :Note[]
const detailsOfCurrentNotes = Object.assign({}, data.notes);
//here data.notes changes
// detailsOfCurrentNotes also get that value
答案 0 :(得分:2)
如果对象/数组不是圆形的,您只需执行以下操作:
const detailsOfCurrentNotes = JSON.parse(JSON.stringify(data.notes));
答案 1 :(得分:0)
如果mybtn-structure
是数组,则为:
@mixin mybtn-structure ($padding: null, $margin: 15px ) {
@include padding-all($padding);
margin: $margin;
}
更短的语法是:
notes
这会创建一个数组的浅表副本。