我在反应应用程序中使用lodash来更新和删除包含对象的嵌套元素,这些对象随后更新我的组件状态并保存到localStorage。
#Create an empty plot with enough xlim and ylim to accomodate all data
plot(1, 1, xlim = range(df[,1]), ylim = range(df[,-1]), type = "n", ann = FALSE)
#Draw the three lines
lines(df$a, df$b)
lines(df$a, df$c, col="blue")
lines(df$a, df$d, col="red")
我是lodash的新手,但是通过路径删除元素而不返回null或未定义的最佳方法是什么?
答案 0 :(得分:0)
_.pullAt
采用整数,而不是字符串
_.pullAt(questions, 0)
console.log(questions) // output is []