<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                >獲取登錄會員發布的文章列表 ~~~[api] get:/index.php/helper/Apihelper/member_getList int:pagesize=10#每頁顯示個數 int:page=1#顯示頁碼數 string:keyword= #檢索的關鍵字 string:sort= id #排序字段 string:sort_type= asc#排序類型 int:parent_id=0#分類id,0:全部分類下的文章 <<< success { "err": 0, "page": 1, "pageTotal": 1, "pageSize": 10, "count": 1, "publisher": { "id": 2, "name": "昵稱", "headPath": "" } , "data": [{ "id": 4, "title": "文章標題", "describe": "文章描述", "url": false, "status": 0, "browse_num": 0, "thumb": "http://localhost/public/Upload/logo_2020_03_14_15_01_51.png", "addtime": "2020-03-14 15:01:55", "parent": { "id": 68, "title": "測試", "ico": "http://localhost/public/Upload/logo_2020_03_14_15_01_51.png" } }] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ | 字段 | 描述 | | --- | --- | | page | 當前頁碼 | | pageTotal | 總共頁碼數 | | pageSize | 每頁顯示記錄條數 | | count| 當前記錄數 | | data| 文章列表 | | |----id | 文章列表 | | |----title| 文章標題 | | |----describe | 文章描述 | | |----url| 文章連接,url值為真表示文章要跳轉到該連接 | | |----status| 審核狀態 0:未審核 1:已審核 | | |----browse_num| 瀏覽量 | | |----thumb| 文章縮略圖 | | |----addtime| 發布時間 | | |----parent| 文章分類 | | |----|----id| 分類id | | |----|----title| 分類標題 | | |----|----ico| 分類圖標 | | publisher| 文章發布者 | | |----id| 發布者id | | |---name| 發布新昵稱 | | |----headPath| 發布者頭像,只有普通用戶發布的才有該參數 | >會員發布文章 ~~~[api] post:/index.php/helper/Apihelper/member_submit *strring:title=""#文章標題 *strring:content=""#文章內容 int:parent_id=0#文章分類id strring:describe=""#文章描述 strring:thumb=""#文章縮略圖 strring:url=""#文章連接,如果點擊文章要跳轉到其它連接,可以此處傳入連接,請用base64加密 int:order_num=0#文章排序 int:browse_num=0#文章瀏覽量 <<< success { "err": 0, "data": [] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >會員編輯發布的文章,獲取編輯文章的內容 ~~~[api] post:/index.php/helper/Apihelper/member_edit_getInfo *int:id=0#編輯文章id <<< success { "err": 0, "data": { "id": 4, "title": "標題", "describe": "描述", "content": "文章內容", "url": "", "browse_num": 0, "order_num": 0, "status": 0, "thumb":5, "thumb_url": "http://localhost/web/public/Upload/administrator/logo_2020_03_14_15_01_51.png", "parent_id": [1,2,3], } } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ | 字段 | 描述 | | --- | --- | | data| 文章列表 | | |----id | 文章列表 | | |----title| 文章標題 | | |----describe | 文章描述 | | |----content | 文章內容 | | |----url| 文章連接,url值為真表示文章要跳轉到該連接 | | |----status| 審核狀態 0:未審核 1:已審核 | | |----browse_num| 瀏覽量 | | |----order_num| 文章排序號 | | |----thumb| 文章縮略圖id | | |----thumb_url| 文章縮略圖地址 | | |----parent_id| 文章分類id,為數組,第一個頂級分類id,以此為下級分類id | >會員編輯發布的文章,提交編輯的數據 ~~~[api] post:/index.php/helper/Apihelper/member_edit_submit *int:id=0#編輯文章id strring:title=""#文章標題 strring:content=""#文章內容 int:parent_id=0#文章分類id strring:describe=""#文章描述 strring:thumb=""#文章縮略圖,可以為縮略圖id,也可以是直接地址 strring:url=""#文章連接,如果點擊文章要跳轉到其它連接,可以此處傳入連接,請用base64加密 int:order_num=0#文章排序 int:browse_num=0#文章瀏覽量 <<< success { "err": 0, "data": [] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >會員刪除發布的文章 ~~~[api] post:/index.php/helper/Apihelper/member_del *string:id=0#刪除文章id,多個id可以用逗號隔開 <<< success { "err": 0, "data": [] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看