我只想在這裏輸出一個錨點。如果current_page在數組中,我會得到兩個(.html和-nf.html)。如果它不在數組中,則獲取與數組中的項目一樣多的錨點。我正在使用StaticMatic。ruby - 如果字符串不包含在數組中
- 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
對不起,你們 - 這個比我意識到的還多,只是做你推薦的東西,我得到了多次發生的除非或!代碼(在這種情況下,主播) –
不,仍然得到重複的.html錨不幸的 –
打破了伎倆,我完全明白 - 非常感謝 –