Question

After load('id') function in model, we can get data by either model->getData('field_name') or model->getFieldName().

I know that both functions are provided by DataObject class but what I want to know is

  1. Is there any different between them ?
  2. What should I use ?
Was it helpful?

Solution

Yes there is a bit of different, model->getFieldName() is a magic method so this will be public and in Magento 2 we can create plugins to manipulate output of public methods

(i.e) Lets assume

It is always advisable to use model->getFieldName() so can take advantage of plugins in Magento 2.

I Hope this explanation helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top