local custid
put the text of field "txtcustid" into custid
put the URL"http://htp2.hitecpoint.in:98/api/live/"+custid into tPreferencesFile
您好朋友我正面临livecode问题。我想将文本框值合并到一个网址中。 我把textbox的值放在变量中。我收到错误“按钮”按钮“:第32行执行错误(操作符+:左操作数错误),字符15”。请帮忙。
答案 0 :(得分:3)
试
local custid
put the text of field "txtcustid" into custid
put URL("http://htp2.hitecpoint.in:98/api/live/" & custid) into tPreferencesFile
(LiveCode使用'&'将值加在一起而不是'+')