我想显示一个针对每个用户的弹跳表格,并在客户端上切换主题。
我将进一步解释我的麻烦:我有x个用户和一个视图,每个用户可以看到自己的信息,而另一个可以看到。 当用户进入视图时,他会看到其个人形式。直到这里我都没问题。我使用以下方法在Controller中进行设置:
#=== bootstrapping prediction price range
library(boot)
# bootstrap function
my.boot <- function(formula, data, indices, price) {
d <- data[indices,]
fit <- lm(formula, data=d)
my.new.data<-data.frame(price)
pred_interval <- predict(fit, newdata=my.new.data, interval="prediction",
level = 0.95)
colnames(pred_interval)[2:3]<-c("pred.lwr","pred.upr")
# return the prediction
return(pred_interval)
}
###############################################
# run the bootstrap
# determine the single value to bootstrap
my.boot.price=data.frame(price=seq(45,55,.1))
dim(my.boot.price)
results <- boot(data=sales, statistic=my.boot,
R=2000, formula=sales~price, price=my.boot.price)
# view results
results
在jsp中,我有:
model.addAttribute("usersForm", usersForm);
单击用户名后,它将触发jQuery函数,该函数将更改用户选择的值并删除此表单的所有行。 现在出现了问题,因为我不知道如何用隐藏变量的新值刷新表单。
谢谢