摘要:
变量的读取 instance_variable_get("@name") #返回@name的值 method相关 string到method名 send book.send('name')book.send("name=","test") ### book.name => test string单数 阅读全文
摘要:
问题描述: 在做csv导入的时候遇到了 "Illegal quoting in line 11227."的错误。 通过检查csv发现这行有个”“,通过测试发现,”“导致报错。 通过查阅stackoverflow 发现相同问题https://stackoverflow.com/questions/98 阅读全文