[임대현] [NOBTS] transationList http post 시 header에 content-type 추가

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@2865 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Denny Lim
2013-11-12 03:06:27 +00:00
parent c2b601a09d
commit 19982a90ff
@@ -131,7 +131,9 @@ pinpointApp.controller('TransactionListCtrl', ['TransactionListConfig', '$scope'
*/
getTransactionList = function (query, cb) {
$http
.post(cfg.applicationUrl, query.join(""))
.post(cfg.applicationUrl, query.join(""), {
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function (data, status) {
if (angular.isFunction(cb)) {
cb(data);