What`s the diff between ruby 1.8.7 and 1.9.1 in module require? -


एक मॉड्यूल है

  'iconv' मॉड्यूल की आवश्यकता पलायन def escape (string) return_value = Iconv.conv ('ascii // translit // IGNORE', 'utf-8', स्ट्रिंग) .to_s एंड एंड  

यह 1.8.7 में काम है लेकिन 1.9 में नहीं है 1।

त्रुटि संदेश है "NameError (uninitialized निरंतर भागने :: Iconv)"

और अनुसरण 1.9.1 में काम है, क्यों ??????? (मेरा रेल उबंटु में 3 रेल है)

  मॉड्यूल एस्केप डीईएफ़ एस्केप (स्ट्रिंग) की आवश्यकता होती है 'iconv' return_value = Iconv.conv ('ascii // translit // IGNORE', 'utf-8 ', स्ट्रिंग) .to_s एंड एंड  

रेल के लिए 1.9.1 का उपयोग न करें , इसके बजाय 1.9.2 या 1.8.7 का उपयोग करें। टिप्पणियों में यहां पढ़ें:


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -