JavaScript的灵活性

最近刚刚接触JS,发现太灵活了:
例如:
var prms = {
lstPractsId : g_CmnGrid.p_lstPractsId,
practType : this.p_typeValue,
displayId:this.fmPnl.getComponent('Displayid').getValue(),
name : this.fmPnl.getComponent('Name').getValue(),
nameEn : this.fmPnl.getComponent('NameEn').getValue(),
unit : this.fmPnl.getComponent('Unit').getValue(),
unitEn : this.fmPnl.getComponent('UnitEn').getValue(),
spec : this.fmPnl.getComponent('Spec').getValue(),
specEn : this.fmPnl.getComponent('SpecEn').getValue(),
price : this.fmPnl.getComponent('Price').getValue()
};
完全可以改写为:
var prmsTmp;
var prmsCmn = ['Displayid', 'Name', 'NameEn', 'Unit', 'UnitEn', 'Spec','SpecEn', 'Price'];
var prms = {
lstPractsId : g_CmnGrid.p_lstPractsId,
practType : this.p_typeValue,
};
for (i = 0; i < prmsCmn.length; i++) {
prms[prmsCmn[i]] = this.fmPnl.getComponent(prmsCmn[i]).getValue();
}
省了我好几行代码...
动态语言真是个好东西...
应该好好学习...

你可能感兴趣的:(JavaScript)