大家好, 我使用这个库https://github.com/dvajs/dva/blob/master/fetch.js请求 yii2 的 rest api 时, 如何才能将服务器返回的头部x-pagination-page-count, x-pagination-total-count
等信息包装进返回结果呢?
x-pagination-current-page:1
x-pagination-page-count:35
x-pagination-per-page:12
x-pagination-total-count:411
我希望将返回的的 data 重新包装下,使 data 对象包含 list(原来的返回结果), 服务器头信息的 x-pagination-total-count,x-pagination-page-count.等信息
但是现在 我只能获取到, 纯粹的 rest 返回结果 是个数组. 我尝试在 request 类中重新封装数据, 各种尝试都失败了. 各种搜 可能是关键词不对 也没有找到解决办法.
请问各位大神, 如何 才能包装成我需要的 对象呢? 谢谢!!!
const {data} = yield call(query, parse(payload));
if (data) {
console.log(data); //!!!这里!!! 我希望将这里返回的 data 重新包装下,使 data 对象 list, 服务器头信息,x-pagination-total-count,x-pagination-page-count.等信息
// 但是现在 我只能获取到, 纯粹的 rest 返回结果 是个数组. 我尝试在 request 类中重新封装数据, 各种尝试都失败了. 各种搜 可能是关键词不对 也没有找到解决办法.
yield put({
type: 'querySuccess',
payload: {
list: data.list,
total: Number(data.total),
current: Number(data.current),
pageSize: data.pageSize ? data.pageSize : 12,
}
});
}
export async function query(params) {
return request(`/api/users?${qs.stringify(params)}`);
}
import fetch from 'dva/fetch';
function checkStatus(response) {
if (response.status >= 200 && response.status < 300) {
//这里是可以读取到这些信息的. 但是我不会重新包装.
console.log(response.headers.get('x-pagination-page-count')); //35
console.log(response.headers.get('x-pagination-total-count')); //411
return response;
}
const error = new Error(response.statusText);
error.response = response;
throw error;
}
function parseJSON(response) {
return response.json();
}
/**
* Requests a URL, returning a promise.
*
* @param {string} url The URL we want to request
* @param {object} [options] The options we want to pass to "fetch"
* @return {object} An object containing either "data" or "err"
*/
export default function request(url, options) {
return fetch(url, options)
.then(checkStatus)
.then(parseJSON)
.then((data)=>({data}))
.catch((err) => ({ err }));
}
<?php
namespace api\modules\test\controllers;
use yii;
use yii\helpers\ArrayHelper;
class UsersController extends yii\rest\ActiveController
{
public $modelClass = '\common\models\User';
public function behaviors() {
return ArrayHelper::merge(parent::behaviors(), [
'corsFilter' => [
'class' => \yii\filters\Cors::className(),
'cors' => [
// restrict access to
'Origin' => ['*'],
'Access-Control-Request-Method' => ['*'],
'Access-Control-Request-Headers' => ['*'],
'Access-Control-Allow-Credentials' => true,
// Allow OPTIONS caching
'Access-Control-Max-Age' => 3600,
// Allow the X-Pagination-Current-Page header to be exposed to the browser.
'Access-Control-Expose-Headers' => ['X-Pagination-Current-Page'],
],
],
]);
}
public function actions()
{
$actions = parent::actions();
// 禁用"delete" 和 "create" 操作
unset($actions['delete'], $actions['create']);
return $actions;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.