Python用反斜杠执行Json

时间:2017-04-20 12:15:17

标签: python json parsing selenium backslash

我有json字符串,我需要使用python在selenium脚本中执行,但我认为.lib使得难以解析

cmd.CommandText = "INSERT INTO Data (FilePath, ImageSize, ImageSide) VALUES (@FilePath, @ImageSize, @ImageSide)"
command.Parameters.Add("@FilePath", SqlDbType.NVarChar) 'Guessing on the type here
command.Parameters("@FilePath").Value = ListViewItem(lines(0))
' Repeat for the other two parameters, using the appropriate SqlDbType values for each

cmd.ExecuteNonQuery()

我使用/",但它不起作用。 我是否需要首先隐藏反斜杠?

0 个答案:

没有答案