我想上传一个带有react-redux-universal-hot-example样板文件的文件。
在提交时,调用以下函数(由ApiClient管理):
export function update(data) {
return {
types: [UPLOAD, UPLOAD_SUCCESS, UPLOAD_FAIL],
promise: (client) => client.post('/project/update', {
files: data
})
};
}
在服务器端,调用以下函数(由Api管理):
export default function update(req, params) {
// get the file
}
文件信息位于何处?