我使用的輸入法菜單:Rails的「問題
我有這樣一個問題:
def convert_html_entities(text)
text = text.gsub(/["]/, '"')
end
的輸入法菜單的顏色也都是綠色的,因爲缺少」
我曾嘗試這種解決方案它刪除了所有的綠色文字和代碼看起來是正常的:
def convert_html_entities(text)
text = text.gsub(/['"']/, '"')
end
,但它只是在vi給了一個錯誤EW:
undefined method `convert_html_entities' for #<XmlController:0x448cef0>
Rails.root: C:/Rails/kimnew
Application Trace | Framework Trace | Full Trace
lib/update_xml.rb:21:in `block in update_xml'
lib/update_xml.rb:19:in `update_xml'
app/controllers/xml_controller.rb:21:in `test'
我會接受你的回答 –