在項目中使用FlashDevelop並切換到FDT/Eclipse。我正在通過代碼中的數百個警告進行排序。在AS3中投射JSON/XML
不少關係到這個項目正在使用的XML和JSON語法。在下文中,我不知道是什麼鑄就包含數據的XML作爲使其由編譯器識別
例子:
public function convertXMLToAssets(file:XML):void
{
var data:XML = new XML(file.data);
var id:int = data.item.id;
//etc
}
//gives Warning: Could not resolve variable (may be a dynamic member) data at line 59
如果我解析或轉換float/int/Number,那麼「item」仍然不是可識別的可解析變量,並且會發出警告(僅限使用FDT/Eclipse) – 2009-11-01 17:42:21
@ cat-biscuit:您可以編輯原始帖子顯示如果您嘗試進行解析/轉換,錯誤是什麼? – 2009-11-01 19:48:23