Hello Jhipster社区 我想知道是否有办法通过url参数在jhipster中填充表单 例如,jhispter为myentity生成了一个可调用的表单 http://localhost:8080/#/shipment(popup:shipment-new)
有没有办法预填?
http://localhost:8080/#/myentity(popup:myentity-new)?name=new
由于
答案 0 :(得分:2)
我猜测你正在使用Angular前端的url。
您可以通过ActivatedRoute服务检索此类数据。属性params
和queryParams
应该为您提供正在查找的数据,并让您填充模板。