ETC/Error

[Error] JavaScript 'The attempt to bind in the workspace failed as this URI is malformed.', html URI 오류

rocher71 2021. 9. 8. 15:23
반응형

JavaScript

 

Error : The attempt to bind ~ in the workspace failed as this URI is malformed.

 

 

URI 관련 오류이다.

작업하던 코드에 다음과 같은 코드가 있었다. 

location.href = "/support/faq/search/" + escape($scope.searchText);

검색어를 처리하는 부분인데, escape 함수를 쓰지 않고 그냥 변수를 쓰면 물음표와 우물정자가 검색어로 들어오면 에러가 떴었다.

이를 해결하기 위한 코드였는데 얘 때문에 위와 같은 에러가 떴던 것이다.

 

 

얘를 다음과 같이 고쳐주면 해결 완료!

location.href = "/support/faq/search/" + encodeURIComponent($scope.searchText);

 

 


결론

escape 함수를 encodeURIComponent함수로 고쳐준다.

 

 


 

반응형