我打开了它 @ fecshop / mongodb / models / Product.php
并补充
'third_refer_url',
'third_refer_code',
'third_product_code',
我得到了回应: null .

之后,我打开 @ fecshop / services / product / ProductApi.php
并补充
protected function checkPostDataRequireAndInt($post)
{...
$third_refer_url = $post['third_refer_url'];
if (!$third_refer_url) {
$this->_error[] = '[third_refer_url] can not empty';
} else {
$this->_param['third_refer_url'] = $third_refer_url;
}
$third_refer_code = $post['third_refer_code'];
if (!$third_refer_code) {
$this->_error[] = '[third_refer_code] can not empty';
} else {
$this->_param['third_refer_code'] = $third_refer_code;
}
$third_product_code = $post['third_product_code'];
if ($third_product_code) {
$this->_param['third_product_code'] = $third_product_code;
}
}
并收到成功下载。
我非常感谢解决步骤1的帮助。