我得到的服務,使ajax調用(GET)。angularjs - url獲取在ajax調用編碼
var _getMemeValues = function(category_id, attribute_id) {
return $http.get('/api/meme_values?category_id='+category_id +'&attribute_id='+attribute_id);
};
當我打這個電話時,url得到這樣的編碼。 http://localhost:8080/api/meme_%E2%80%8Bvalues?category_id=MLB1468&%E2%80%8Battribute_id=MLB1234
我該如何解決這個問題?我試着用的toString(),decodeURIComponent轉換,但沒有奏效
謝謝,就是這樣。 –