- This topic has 6개 답변, 3명 참여, and was last updated 4 years, 3 months 전에 by 야곰.
6 답변 글타래를 보이고 있습니다
-
글쓴이글
-
-
TTOzzi참가자
- 글작성 : 10
- 답글작성 : 13
https://zeddios.tistory.com/281
이 글에선 addingPercentEncoding 의 인자로 .urlFragmentAllowed 를 사용해서 해결했네요.
같은 상황인 것 같은데 참고해보세요..!2020-08-04 오후 5:51 #27939 -
야곰키 마스터
- 글작성 : 37
- 답글작성 : 579
메시지 드린대로 저는 똑같이 했을때 정상적인 결과가 나옵니다. 저기
page
전달인자로 들어오는 값에 문제가 있을지 어떨지 감이 안잡히네요.
let string = "https://yagom.net/method_sample?param_one=student¶m_name=야곰¶m_two=한글&type=질문" let encoded = string.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) if let unwrappedEncoded = encoded, let url = URL(string: unwrappedEncoded) { print(url) }인코딩된 결과는 이렇게 나왔어요.
https://yagom.net/method_sample?param_one=student¶m_name=%EC%95%BC%EA%B3%B0¶m_two=%ED%95%9C%EA%B8%80&type=%EC%A7%88%EB%AC%B8
2020-08-05 오후 3:02 #27993
-
글쓴이글
6 답변 글타래를 보이고 있습니다
- 답변은 로그인 후 가능합니다.