dousao2186 2016-07-06 00:11
浏览 54
已采纳

如何在prestashop 1.6中访问属于另一个控制器/模型的.tpl文件中的DB数据?

I need to reach data, which belongs to IdentityController from the Customer database table in my my-account.tpl file. ( To be honest I should merge the content of identity.tpl and my-account.tpl on one page, but I have no solution for the problem.)

Should I change the controller, or can I access Customer table data trough the IdentityController in some way via smarty from my-account.tpl? (if yes, how?)

Any advice could be helpful and appreciated!

Thanks a lot!

  • 写回答

1条回答 默认 最新

  • duanjiu2701 2016-07-07 01:25
    关注

    Data does not belong to a controller.

    The general rule is that database tables representing conceptual entities (Customer, Order, Cart, etc...) are fetched and modified via their namesake classes (the model). As long as you can construct a Customer object in any given controller, you can access the corresponding data for that object from the database.

    A controller only contains the logic that performs a certain action or group of actions. To achieve this, it usually interacts with one or more objects from the model because the controller itself stores no data of its own.

    In this particular case, if you have access to the customer's id, you can pass that to the Customer constructor and proceed to use its properties and methods.

    Alternatively, the controller might have already set the $this->context->customer property which contains an already-constructed Customer object you can use.

    Once you can access that data, you just have to assign the values to the smarty variables of your choice (via $this->context->smarty->assign()) and you're all set to use them in your template.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。