zend框架2.4索引动作

时间:2015-06-01 16:38:24

标签: zend-route

开始使用zend教程。无法生成

Long Text

映射到
// Get all select box var allSelects = $('select'); var length = allSelects.length; $(document).ready(function(){ $('select').change(function(){ // Get index of selected option of current select box var selection = $('option:selected', this).index(); // Get the index of next Select box var index = allSelects.index(this) + 1; if(index < length){ // Get next select box var nextSelect = allSelects.eq(index); // Make option disable $('option', nextSelect).each(function(i){ if(i <= selection) $(this).prop('disabled', true); else $(this).prop('disabled', false); }); } }); });

但使用zf2-tutorial.localhost/album/ 会调用索引操作。

已将默认操作设置为&#39; index&#39;

1 个答案:

答案 0 :(得分:0)

更改行:
'route' => '/album[/:action][/:id]'
要:
'route' => '/album/[/:action][/:id]',
module.config.php相册模块中