我对 Cinnamon 和 javascript 完全陌生(但在 python 上相当胜任)。
我一直在尝试更新现有的桌面,以显示来自我网络上的 json 提要的一些足球比分。
我遇到的问题是脚本不会刷新数据。我已将其缩小为由我的网络请求引起的。我试图通过让桌面只显示时间(以秒为单位)来证明这一点,这样我就可以看到它是否正在更新。当我注释掉两个 Web 请求行时,时间会按预期更新。当他们离开时,时间不会改变。问题是,我不知道为什么这会停止更新。
desklet.js
:
const Lang = imports.lang;
const Mainloop = imports.mainloop;
const St = imports.gi.St;
const Json = imports.gi.Json;
const Soup = imports.gi.Soup;
const Desklet = imports.ui.desklet;
const Settings = imports.ui.settings;
const _httpSession = new Soup.SessionAsync();
function MyDesklet(metadata, desklet_id){
this._init(metadata, desklet_id);
}
MyDesklet.prototype = {
__proto__: Desklet.Desklet.prototype,
_init: function(metadata, desklet_id){
Desklet.Desklet.prototype._init.call(this, metadata);
this._date = new St.Label({style_class: "football-desklet-label"});
this.setContent(this._date);
this.setHeader(_("Football scores"));
this.settings = new Settings.DeskletSettings(this, this.metadata["uuid"], desklet_id);
this.settings.bindProperty(Settings.BindingDirection.IN,
"date-format",
"format",
function() {},
null);
this.settings.bindProperty(Settings.BindingDirection.IN,
"font-size",
"size",
this._onSettingsChanged,
null);
this._onSettingsChanged();
this.getJSON("http://www.bbc.co.uk");
},
getJSON: function(url) {
// If I leave these two lines in, the time doesn't update.
let message = Soup.Message.new('GET', url);
_httpSession.send_message (message);
let displayDate = new Date();
this._date.set_text(displayDate.toLocaleFormat("%s"));
this.timeout = Mainloop.timeout_add_seconds(1, Lang.bind(this,this.getJSON));
},
_onSettingsChanged: function(){
this._date.style="font-size: " + this.size + "pt; font-style: italic";
},
on_desklet_removed: function() {
Mainloop.source_remove(this.timeout);
},
_updateDate: function(){
let displayDate = new Date();
this._date.set_text("Hello:" + displayDate.toLocaleFormat("%s"));
this.timeout = Mainloop.timeout_add_seconds(1, Lang.bind(this, this._updateDate));
}
}
function main(metadata, desklet_id){
let desklet = new MyDesklet(metadata, desklet_id);
return desklet;
}
如果你想自己测试一下,另外两个文件是
settings-schema.json
:
{
"font-size": {
"type": "spinbutton",
"default": 50,
"min": 8,
"max": 50,
"units": "",
"description" : "Font size:",
"step": 1
}
}
和metadata.json
:
{
"uuid": "dev@elparaguayo",
"name": "Testing desklet",
"description": "Could do anything...",
"icon": "stock_calendar",
"prevent-decorations": false
}
任何调试此问题的帮助将不胜感激。谢谢你。