我有一個tableView的問題,特別是當我使用有效的URL作爲leftImage的數據。 如果我使用本地文件,但它沒有任何有效的URL,它就像一個魅力。 任何人都可以幫助我,並告訴我我做錯了什麼,以及如何修復它,以便我可以從遠程服務器顯示jpg?
在此先感謝[email protected]Appcelerator鈦tableView
P.S.以下是相關的Titanium代碼。我使用的鈦移動1.7.2在鈦工作室
//...
var thisRow = Ti.UI.createTableViewRow({
leftImage: "images/pix_sd_1.jpg", // This works!
leftImage: "http://terminalentry.dyndns.org/~alex/pix/pix_sd_1.jpg", // this does not work!
layout:"vertical",
objectName:"RentalRow",
selectedColor:"black",
height:60
});
thisRow.add(thisLabelCity);
thisRow.add(thisLabelState);
thisRow.add(thisLabelRentals);
thisRow.add(thisLabelTemp);
tableData.push(thisRow);
labelTempArray.push(thisLabelTemp);
//...