Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
提交 Magento (1.5.1.0) 搜索时,是否有人知道忽略特殊字符的方法?
例如:如果有人提交#955 作为产品搜索,它返回零个结果,但如果搜索到 955,则返回相应的产品结果。
查看 Magento 管理员中的搜索词,许多用户在搜索时在型号前面包含“#”,如果可能的话,我想过滤它,以便在提交搜索时忽略它。
预先感谢您的任何帮助!
您可以在自定义模块中编写结果控制器,该模块将检查任何特殊字符并将其过滤掉。
请参阅 Magento Mage_Core_Controller_Front_Act 中的此类。您的自定义模块应该扩展此类,并且您需要为此编写一个方法。
希望这会给你一些想法。