回答編集履歴
1
文章の修正
answer
CHANGED
@@ -2,4 +2,8 @@
|
|
2
2
|
正しくはstring型です。
|
3
3
|
https://developer.salesforce.com/docs/atlas.ja-jp.224.0.apexcode.meta/apexcode/apex_class_System_Json.htm#apex_System_Json_deserialize
|
4
4
|
|
5
|
-
> Method does not exist or incorrect signature: void deserialize(List<String>, System.Type) from the type System.JSON
|
5
|
+
> Method does not exist or incorrect signature: void deserialize(List<String>, System.Type) from the type System.JSON
|
6
|
+
|
7
|
+
> testRes t = (TestRes)JSON.deserialize(s11,TestRes.class);
|
8
|
+
|
9
|
+
s11にはどんな値が入っていますでしょうか?
|