Magento 直接在另一个模块的 phtml 文件中访问模块中的函数
我的设置
我安装了两个模块:
- 一个人获取一个
id
,并使用id
查找属性值
对(mod1
)- 另一个提供了缩小搜索范围的方法 (
mod2
)我所在的真实网址是
/mod1/page/view/id/
期望的结果
能够将属性值作为隐藏字段传递给第二个模块
问题
当我位于
mod2
的布局文件中时,如何访问mod1
中的对象和函数?
如果需要更多信息,请告诉我。
My setup
I have two modules installed:
- one takes an
id
and builds a product collection from this using theid t
o lookup anattribute-value
pair (mod1
)- The other offers a way of narrowing a search down (
mod2
)The true url I am on is
/mod1/page/view/id/<id#>
Desired outcome
To be able to pass the attribute-value as a hidden field to the second module
Question
How do I access the object and functions from
mod1
when I'm in the layout file formod2
?
If more information is required, please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
模块需要加载的方式如下:
在控制器中设置了这个:
然后我就可以正常使用定义的方法了。
这可能是一个过于具体的问题,我应该删除这个问题吗?
The way the module needed to be loaded was as follows:
Where in the controller this had been set:
Then I could use the defined methods normally.
This may be an overly specific issue, should I just delete the question?