ruby - если строка не содержится в массиве - PullRequest
1 голос
/ 01 декабря 2009

Я хочу вывести только один якорь здесь. Если current_page находится в массиве, я получаю два (.html и -nf.html). Если его нет в массиве, я получаю столько якорей, сколько есть элементов в массиве.

Я использую StaticMatic .

- if page_options[:current_index] < page_options[:total_index] && page_options[:current_index] > 0

    // loop through the pre-flash array and if current page matches, add -nf
    - page_options[:pre_flash] = ['string_one-nf', 'string_two-nf', 'string_three-nf']
    - page_options[:pre_flash].each do |each_string|

        - if current_page.include? each_string
            %li 
                %a{ :href => "page#{page_options[:current_index]}-nf.html", :class => "next" }
                    Next
        - else
            %li
                %a{ :href => "page#{page_options[:current_index]}.html", :class => "next" }
                    Next

Ответы [ 2 ]

2 голосов
/ 01 декабря 2009
unless current_page.include? the_string

Edit:

Вы можете разорвать каждый цикл, если хотите, чтобы ваш первый результат был единственным. Но теперь это выглядит немного странно, потому что вы перебираете массив и ломая после первого элемента, что бы ни случилось. Я решаю вашу проблему вообще?

options[:pre_flash] = ['string_one-nf', 'string_two-nf', 'string_three-nf']
page_options[:pre_flash].each do |each_string|
  if current_page.include? each_string
    %li 
    %a{ :href => "page#{page_options[:current_index]}-nf.html", :class => "next" }
    # This is the last ancor
    break
  else
    %li 
    %a{ :href => "page#{page_options[:current_index]}.html", :class => "next" }
    # This is the last ancor
    break
  end
end
1 голос
/ 01 декабря 2009

Хорошо, я думаю, мы проверяем, что ни одна из page_options [: current_index] не является подстрокой current_page.

if page_options[:current_index] < page_options[:total_index] && page_options[:current_index] > 0

found_item = false

// loop through the pre-flash array and if current page matches, add -nf
- page_options[:pre_flash] = ['string_one-nf', 'string_two-nf', 'string_three-nf']
- page_options[:pre_flash].each do |each_string|

    - if current_page.include? each_string
            found_item = true
            %li 
                    %a{ :href => "page#{page_options[:current_index]}-nf.html", :class => "next" }
                            Next

# do whatever you need to get out of the staticmatic block...

    - if !found_item

            %li
                    %a{ :href => "page#{page_options[:current_index]}.html", :class => "next" }

Извините - я неправильно понял, что вы делали ... думал, что вы делаете включение? в массиве, но это была строка ...: -)

...