From 19982a90ff34d3d3addfb439384b5d44eec353b4 Mon Sep 17 00:00:00 2001 From: Denny Lim Date: Tue, 12 Nov 2013 03:06:27 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9E=84=EB=8C=80=ED=98=84]=20[NOBTS]=20trans?= =?UTF-8?q?ationList=20http=20post=20=EC=8B=9C=20header=EC=97=90=20=20cont?= =?UTF-8?q?ent-type=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@2865 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/webapp/scripts/controllers/transactionList.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/scripts/controllers/transactionList.js b/src/main/webapp/scripts/controllers/transactionList.js index 7ec95ec7c..1a9851898 100644 --- a/src/main/webapp/scripts/controllers/transactionList.js +++ b/src/main/webapp/scripts/controllers/transactionList.js @@ -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);