我正在使用codeiginter购物车。我发送购物车数据通过Ajax请求,但在响应输出给我很多错误,我不知道为什么给我语法错误帮助赞赏
- 解析错误:语法错误,意外T_IF行号:873
- 消息:语法错误,意外'form_hidden'(T_STRING)
醇>
final Gson gson = new Gson();
//to deserialize
ModelObject obj = gson.fromJson(yourJson, ModelObject.class);
//to serialize
String toJson = gson.toJson(obj);
答案 0 :(得分:0)
你错过了Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
If e.ColumnIndex = 5 Then
tb1.Text = DataGridView1.CurrentRow.Cells(3).Value
tb2.Text = DataGridView1.CurrentRow.Cells(3).Value
tb3.Text = DataGridView1.CurrentRow.Cells(3).Value
End If
End Sub
来分割线条。或;
如果您想连接这些行,因为您稍后会做几行。
此外,您无法连接字符串和if语句(不直接)。如果您有意外的if语句,请在分号前用分号替换。