We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
f I use APIView to design API, what should I do
eg :
url(r'^alipay.pay.unified.order/$', views.AlipayPayUnifiedOrderView.as_view(), name='alipay.pay.unified.order'),
class AlipayPayUnifiedOrderView(BaseOpenGateWayRequestView): request_params = ('merchant_code', 'total_amount', 'out_trade_no', 'subject', 'card_code') def get(self, request, format=None): """ """ return resp_data(pay_api.alipay_pay_unified_order(self.get_request_params(request, self.request_params)))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
f I use APIView to design API, what should I do
eg :
url(r'^alipay.pay.unified.order/$', views.AlipayPayUnifiedOrderView.as_view(), name='alipay.pay.unified.order'),
The text was updated successfully, but these errors were encountered: