local tile = {"C", "O", "L", "I", "N", "F", "A", "R", "R", "E", "L", "L"}
table.sort(tile, function(a,b) return ( math.random(1,2) <2) end)
print ( 'table: '..table.concat( tile, ', '))
我正在随机化表格的顺序,这似乎工作正常,但每次我运行程序时,我都会收到这个错误:invalid order function for sorting
。关于正在发生的事情有什么建议吗?
我已经找到了解决方案。 http://developer.coronalabs.com/code/shufflerandomize-tables 这将随机播放您的表格内容,而不会出现上述方法的任何问题。