專案**:
介面開發
carousel輪播圖模組:
1、獲取輪播圖位址
方法名:carousels
引數:無
返回型別:resultmessage
請求位址 /resources/carousel
請求方式:get
category分類模組:
2、獲取分類名稱:
方法名:category
引數:無
返回型別:resultmessage
請求位址 /category
請求方式:get
商品模組:("/product")
3、根據型別獲取商品
方法名:getproductbycategoryid
引數:categoryid
返回型別:resultmessage
請求位址 /category/limit/
請求方式:get
4、根據查詢資訊獲取商品
方法名:getproductbysearch
引數:search
返回型別:hashmapmap(code、data、total)
請求位址 /getproductbysearch///
請求方式:get
5、根據型別獲取商品-分頁
方法名:getproductbycategoryid
引數:page
返回型別:hashmapmap(code、data、total)
請求位址 /page///
請求方式:get
6、根據id獲取商品
方法名:getproduct
引數:id
返回型別:resultmessage
請求位址 /
請求方式:get
7、獲取熱門商品
方法名:gethotproduct
引數:無
返回型別:resultmessage
請求位址 /category/hot
請求方式:get
8、:獲取資訊
方法名:getproductpicturebyproductid
引數:productid
返回型別:resultmessage
請求位址 /productpicture/product/
請求方式:get
使用者模組:("/user")
9、登入
方法名:login
引數:user
返回型別:resultmessage
請求位址 /login
請求方式:post
10、register 註冊
方法名:register
引數:user
返回型別:resultmessage
請求位址 /register
請求方式:post
11判斷使用者名稱是否存在
方法名:username
引數:username
返回型別:resultmessage
請求位址 /username/
請求方式:get
12、驗證令牌
方法名:token
引數:token
返回型別:resultmessage
請求位址 /token
請求方式:get
購物車模組:("/cart")
13、新增購物車
方法名:addcart
引數:productid、userid
返回型別:resultmessage
請求位址 /product/user//
請求方式:post
14、查詢
方法名:getcart
引數:userid
返回型別:resultmessage
請求位址 /user/
請求方式:get
15、刪除
方法名:deletecart
引數:userid、cartid
返回型別:resultmessage
請求位址 /user//
請求方式:delete
16、更新
方法名:updatecart
引數:userid、cartid
返回型別:resultmessage
請求位址 /user//
請求方式:put
17、訂單模組(「/order」)
方法名:addorder
引數:cartvolist、cookie
返回型別:resultmessage
請求位址 /addorder
請求方式:post
18、查詢訂單
方法名:getorder
引數:cookie
返回型別:resultmessage
請求位址 /getorder
請求方式:post
小公尺商城專案總結
指令碼中判斷是否相等不能用equals,沒有這個方法,只能用 資料庫工具類,只需要載入一次就夠了,所以我們採用靜態 塊來初始化該方法,作為工具類使用 public static queryrunner qr null 因為是在不同包下的,所以要用public才可以呼叫 ajax往servlet傳送資...
小馬商城api介面文件
baseurl 首頁輪播,九宮格 url home multidata method get data list列表介面 url home data mehhod get data 引數 type表示商品分類 流行 pop new 精選 sell page為當前頁碼 詳情頁1.商品詳情資料 url ...
Python編寫API介面
要求通過進行訪問,引數a aa b bb c 00 1.編寫url 瀏覽器會自動將?後面識別為引數。urlpatterns url r calc aptest.calc,name calc 2.編寫view 瀏覽器返回json型別結果 import json defcalc request a re...