1

此代码在 iOS 上完美运行。

当我在我的 SGSII Android 手机上运行相同的线路时,根本没有任何进展。文本,laddar...只是无限循环。

我已经添加了

"android.permission.INTERNET",

到我的 build.settings 文件。

这是我的代码:

local function fetchDataFromURL()


    local loadingText = display.newText("no text", 0,0,"Sintony", 40)
    loadingText.text = "Laddar stipendier..."
    loadingText:setReferencePoint(display.CenterLeftReferencePoint)
    loadingText.x = mainBox.x - loadingText.width/2
    loadingText.y = mainBox.y



    local function updateLoadingText()
        if (loadingText.text == "Laddar stipendier") then loadingText.text = "Laddar stipendier."  
        elseif (loadingText.text == "Laddar stipendier.") then loadingText.text = "Laddar stipendier.."   
        elseif (loadingText.text == "Laddar stipendier..") then loadingText.text = "Laddar stipendier..." 
        elseif (loadingText.text == "Laddar stipendier...") then loadingText.text = "Laddar stipendier" 
        end 
        loadingText:setReferencePoint(display.CenterLeftReferencePoint)
        loadingText.x = 134
    end
    local loadingTimer = timer.performWithDelay(500, updateLoadingText, 0)

    local function compare(a,b)
        return a.title < b.title
    end



    local function infoFetch(event)
            -- perform basic error handling
            if ( event.isError ) then
                print( "Network error!")
            else
            local data = json.decode(event.response)
            scholarshipTable = data.scholarships

            for key, value in pairs(scholarshipTable) do
                table.insert(namesOfScholarship,{title = value.title, id = value.id})
            end
            table.sort(namesOfScholarship, compare)

            timer.cancel(loadingTimer)
            loadingText:removeSelf()
            loadingText = nil
            createTableView()
            return true
            end
        end

      network.request( dataURL, "GET", infoFetch )
end

我看不出这段代码有什么问题,而且我对它在我的安卓设备上不起作用这一事实感到困惑。

任何帮助表示赞赏

4

2 回答 2

1

更新到最新版本解决了我的问题

于 2014-10-12T16:08:29.200 回答
0

我看不出你的代码有什么问题

我认为问题是你的安卓设备,有时设备的互联网连接是问题

您可以根据您的请求添加超时

local params = {}
params.timeout = 3 --in seconds

network.request( dataURL, "GET", infoFetch , params)

所以event.isError如果它在 3 秒内没有加载它会返回

于 2013-07-04T02:58:39.503 回答