【问题标题】:Lua Script ErrorLua 脚本错误
【发布时间】:2013-05-01 12:48:26
【问题描述】:

情况:

我想在某个文件中保存作为传感器值的数据记录。

代码是..

--Header file
require("TIMER")
require("IPBOX")
require("ANALOG_IN")
require("LOG")

function OnExit()
print("Exit code...do something")
end

function main()
timer = "Timer"
local analogsensor_1 = "AIR_1"
local analogsensor_2 = "AIR_2"
local timestr = os.data("%Y-%m-%d %H:%M:%S")


-- open the file for writing binary data
local filehandle = io.open("collection_of_data.txt", "a")


while true do 
    valueOfSensor_1 = ANALOG_IN.readAnalogIn(analogsensor_1);
    valueOfSensor_2 = ANALOG_IN.readAnalogIn(analogsensor_2);

    if (valueOfSensor_1 > 0 and valueOfSensor_2 > 0) then

        -- save values of sensors           
        filehandle:write(timestr, " -The Value of the Sensors: ", tostring(valueOfSensor_1), tostring(valueOfSensor_2)"\n");

        -- save values using rolling log appender:          
        LOG.log_event( ScenarioLoggerDevicenameInDeviceList, " -The Value of the Sensors: ", tostring(valueOfSensor_1), tostring(valueOfSensor_2), "any other string you wish to add", "etc", "etc")
        LOG.log_event( ScenarioLoggerDevicenameInDeviceList, " -The Value of the Sensors: ", tostring(valueOfSensor_1))
        print("Hello3"..valueOfSensor_1)
    end

TIMER.sleep(timer,500)
end

-- close the file
filehandle:close()

end 

print("start main")
main()

在这一行:

filehandle:write(timestr, " -The Value of the Sensors: ", tostring(valueOfSensor_1), tostring(valueOfSensor_2)"\n");

我收到一个错误:

"attemp to index global 'filehandle' (a nil value)"

我该如何解决?

【问题讨论】:

    标签: lua scenarios


    【解决方案1】:

    io.open 如果无法打开文件,则返回nil。这可能是由于“找不到文件”、“权限被拒绝”以及其他原因造成的。为了找出问题所在,io.open 有第二个返回值,它可以让您检查错误(实际上,它甚至返回第三个值,它是一个错误代码整数 - 但其含义取决于系统)。

    变化:

    local filehandle = io.open("collection_of_data.txt", "a")
    

    local filehandle, message = io.open("collection_of_data.txt", "a")
    if not filehandle then
        print(message)
    end
    

    你也可以使用下面的 Lua 成语:

    local filehandle = assert(io.open("collection_of_data.txt", "a"))
    

    这将做同样的事情。如果assert的第一个参数是nil,则打印第二个参数(io.open的第二个返回值。如果第一个参数不是nil,则直接返回。

    【讨论】:

      猜你喜欢
      • 2011-07-12
      • 1970-01-01
      • 2017-10-05
      • 1970-01-01
      • 1970-01-01
      • 2017-07-14
      • 1970-01-01
      • 2016-03-23
      • 1970-01-01
      相关资源
      最近更新 更多