net.sf.json.exception:Unquotted String错误,解决办法。

错误展现:

$parameter='{
 "iq":{"namespace":"FormSendDoRequest",
 "query":{
      "dealType":"0",
      "id":$id,
      "isReturnCurrentNode":"0",
       "isTrace":"0",
      "isWait":"0",
       "nodes":[
          {"GUID":$node_guid
            "figureID":"",
            "figureName":"",
              "figureType":"",
              "id":$node_id,
              "name":"客服部",
             "type":"0",
            "value":"X1260"}],
            "requestType":"5"
 }}}';
我有一串数据,如上。里面的变量$id,$node_guid,$node_id。
$node_guid的值为03683D7A-714F-894F-A0E8-70469F67D9C6
现在提交的时候出现net.sf.json.exception:unquotted  string '03683D7A-714F-894F-A0E8-70469F67D9C6'。


解决办法:json 对象值使用""双引号存储。




你可能感兴趣的:(java,Web,异常篇)