我试图使用Gio :: ContentType.get_icon在Ruby中获取与mime类型相关联的图标,但它失败并出现错误:
main.rb:11:in `get_icon': no implicit conversion of Module into String (TypeError)
from main.rb:11:in `<main>'
代码:
#!/usr/bin/env ruby
require "gtk3"
require "glib2"
require "gio2"
mime_type = "image/jpeg"
icon = Gio::ContentType.get_icon(mime_type)
我真的不明白为什么会这样或者我做错了什么......
任何帮助将不胜感激。抱歉英语不好。