— 项目领域进入后,里面的3000功能获取Prj_id 方法
local nRet, strRetInfo
— 获取外部输入参数
nRet, strRetInfo = mobox.getCurEditExtInfo(strLuaDEID)
if (nRet ~= 0 ) then
Error( strLuaDEID, debug.getinfo(1), strRetInfo)
return
end
local tTmp = json.decode(strRetInfo)
local tP = tTmp.urlParams
if (tP == nil) then
Error( strLuaDEID, debug.getinfo(1), “输入参数有问题!”)
return
end
local strPrjID = tP.prjId
if (strPrjID == nil) then
Error( strLuaDEID, debug.getinfo(1), “获取项目标识失败!”)
return
end
strPrjID = strPrjID:match(“{(.-)}”) — 去掉 {}
上一篇: mobox3 格式化日期