我的表有 Attachment.attachment_content_type 这是字符串类型。值如下所示:
[]
[image/png]
[application/msword, application/word, application/x-msword, application/x-word, text/plain]
我想要做的是得到第一个项目(如果有的话)。
我正在尝试:
attachment.attachment_content_type[0]
但这只是返回 [ 而不是 'application/msword'
我应该使用拆分还是有更好的方法在rails上使用ruby来告诉rails这是一个数组?谢谢