Zendframework2のプログラムを引継いで担当しているのですが、
どこに設定箇所があるのか分からず、ご存知の方、ご助言頂ければ幸いで御座います。
php
1$routes['api'] = [ 2 'type' => 'Segment', 3 'options' => [ 4 'route' => '/api/:controller[/:id]', 5 'constraints' => [ 6 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', 7 'id' => '[^/]*', 8 ], 9 'defaults' => [ 10 '__NAMESPACE__' => $ns . '\API', 11 'id' => null 12 ] 13 ] 14 ];
上記の設定方法で、アクションが指定されておらず、
アクションの設定箇所が理解できておりません。
php
1class CartController extends AbstractActionController 2{ 3 /** 4 * @param mixed $id 5 * @return IndexViewModel|DetailViewModel 6 */ 7 public function get($id) 8 { 9 $site_code = $this->params()->fromQuery('site_code', null); 10 11 if (!$id) { 12 return $this->createView('Api\Cart\IndexViewModel', compact('site_code')); 13 } else { 14 return $this->createView('Api\Cart\DetailViewModel', compact('id', 'site_code')); 15 } 16 } 17 18 public function create($data) 19 { 20 $cart = $this->getCart(); 21 22 $id = ""; 23 24 if( $data['product_code'] != null ) { 25 26 $cartProduct = new CartProduct($data); 27 28 $id = $cart->add($cartProduct); 29 } 30 31 return new JsonModel([ 32 'status' => true, 33 'id' => $id, 34 'cart_cnt' => count($cart->products) 35 ]); 36 } 37 38 public function update($id, $data) 39 { 40 $cart = $this->getCart(); 41 42 if (is_null($id)) { 43 foreach ($data as $params) { 44 $this->_update($cart, $params['id'], $params); 45 } 46 return new JsonModel([ 47 'status' => true, 48 'id' => null 49 ]); 50 } else { 51 $this->_update($cart, $id, $data); 52 53 return new JsonModel([ 54 'status' => true, 55 'id' => $id 56 ]); 57 } 58 } 59 60 protected function _update($cart, $id, $data) { 61 $cartProduct = $cart->getCartProduct($id); 62 $original_product_code = $cartProduct->product_code; 63 $cartProduct->setData($data); 64 if ($original_product_code != $cartProduct->product_code) { 65 $data['amount'] = $cartProduct->amount; 66 $data['sort'] = $cartProduct->sort; 67 $cartProduct = new CartProduct($data); 68 } 69 $cart->update($cartProduct); 70 } 71 72 public function delete($id) 73 { 74 $cart = $this->getCart(); 75 76 $result = ($id) ? $cart->delete($id) : false; 77 78 return new JsonModel([ 79 'status' => $result, 80 'cart_cnt' => count($cart->products) 81 ]); 82 } 83 84 85 /** 86 * カート取得 87 * 88 * @return CartStorage 89 */ 90 protected function getCart() 91 { 92 return $this->getServiceLocator()->get('CartStorage'); 93 } 94}
PUTメソッドで/api/cartを実行すると、現在稼働中のサーバーはupdateメソッドに入り、
新しく立てようとしているサーバーではgetメソッドに入ります。
判断するコードがどこかにあるんじゃないかと考えているのですが、
現在不明で、検索キーワード等でも構いませんので、ご教示何卒宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。