|
When I set a field in raw data, ideally I can pass the field name and value in URL, and then set the field in the server side.
For example, in ai.js.luan, I'm trying to do:
local f = '"'..Http.request.parameters.f..'"'
...
data.blocks[2].children[subIndex][f] = v
but this doesn't work.
I think I got the syntax wrong, but couldn't find examples in ed.html.luan
|