0

我正在关注本教程。但是当我尝试运行它时,我不断收到这个错误;

    JS ERROR: !!!   Exception was: Error: Expected type utf8 for Argument 'argv' but got type 'number' (nil)
    JS ERROR: !!!     message = '"Expected type utf8 for Argument 'argv' but got type 'number' (nil)"'
    JS ERROR: !!!     fileName = '"main.js"'
    JS ERROR: !!!     lineNumber = '146'
    JS ERROR: !!!     stack = '"@main.js:146
"'
Error: Expected type utf8 for Argument 'argv' but got type 'number' (nil)

我真的不确定出了什么问题。错误发生在第 146 行;

Gtk.init(0, null);

使用的代码可在此处获得。

4

1 回答 1

0

是的。这是一个错误。看看这个带有补丁的消息:https ://mail.gnome.org/archives/commits-list/2012-February/msg10213.html

你应该改变Gtk.init(0,null);Gtk.init(null, null);

于 2013-03-15T08:38:23.507 回答