AWS (1) 썸네일형 리스트형 [ERROR] TypeError: string indices must be integers (aws lambda, api gateway) [ERROR] TypeError: string indices must be integers 이 에러가 뭐냐고? 너도 알고 나도 알고 다알지 인덱스에 integer가 아닌 다른걸 넣은거지 a=[2,3] # a[0.5] -> error # a['0'] -> error print(a[0]) 근데 지금 이걸로는 이해가 안돼! 선결론 다중배열이 dict 안에 dict이 아닌, dict안에 str형태이다. event 객체가 json 형태를 받아서 사용할때 dict 형태가 아닌 str형태로 만들어서 그렇다 다시말해 event 객체 event={ "body":{ "no":2017036174, "name":"nsmchan" } } # EVENT BODY # {'no': 2017036174, 'name': 'nsmchan.. 이전 1 다음