是否可以将额外的参数传递给“loadNetzkeComponent”并在组件配置中使用它们?
例子:
JavaScript:this.loadNetzkeComponent({name: 'Erp::OrderPanel', container: 'workspace', params: { orderId: 1 }, scope: this });
红宝石:
class Erp::OrderPanel < Netzke::Base
# ...
def configuration(params)
super.merge(
scope: { order_id: params[:order_id] }
)
end
# ...
end
我知道,该方法没有param
属性configuration
,但是有没有办法做这样的事情?