def destroy_stories(project_id, user_stories)
errors = []
@project = Project.find(project_id)
user_stories.each do |current_user_story_id|
unless @project.user_stories.find(current_user_story_id).destroy
errors.push("Error destroying user_story: #{current_user_story_id}")
end
end
if errors.compact.length == 0
@common_response.success = true
else
@common_response.success = false
@common_response.errors = errors
end
@common_response
end
每当我调用Reset()函数时,我都会得到上面的错误。这段代码应该是一个秒表,Lap()函数只是创建圈数。我找了一些解决方案,但似乎都没有。如果可以,请帮助我
答案 0 :(得分:1)
我假设您可以拨打Reset()
一次,但下次调用时会出现错误。这是因为aux.removeChild(action)
。你删除了action
然后你试图得到它的parentNode - 这就是问题所在。
答案 1 :(得分:0)
我认为您通过Reset()
func创建具有id lappara的元素之前调用func lap()
或多次调用Reset()
函数。