Symfony 搜索表单
我使用 symfony 1.4.12 和 Zend Lucene。我进行自定义搜索,我有类别、国家等字段...我创建模块,我有 MysearchSucess.php 并在那里编写硬代码,例如:
<select name="ads_country" id="ads_country">
<option value="AF">Afghanistan</option>
<option value="AX">Åland Islands</option>
<option value="AL">Albania</option>
</select>
等...但在 symfony 中有一些不错的小部件,例如 sfWidgetFormI18nChoiceCountry; 或者例如,如果用户添加类别,我将需要在代码中手动添加新类别...在我的情况下是否可以使用小部件?如何在没有硬编码的情况下正确组织它? 谢谢你!
I use symfony 1.4.12 with Zend Lucene. And I make custom search, I have field like category, country...I create module and I have MysearchSucess.php and there I write hardcode, like :
<select name="ads_country" id="ads_country">
<option value="AF">Afghanistan</option>
<option value="AX">Åland Islands</option>
<option value="AL">Albania</option>
</select>
etc... But there are in symfony nice widget like sfWidgetFormI18nChoiceCountry;
Or for examle, if user add category, I will need to add new category in code manualy... Is it possible to use widgets in my case? how to organize it right without hardcode?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我读了这个 一切都好!
Ok, I read this and all ok!