所以这是我的php功能。首先我得到变量
cp .env.example .env
php artisan key:generate
传递给最终函数
$this->sphotoRepository->save($command->sphoto, $status->id, $command->label, $command->sphoto_categories, $command->sphoto_tagged_users, $command->u18);
以下是我传递数据的方式
public function save(UploadedFile $file = null, $statusId, $label, $sphoto_categories, $sphoto_tagged_users, $u18)
....
if (isset($sphoto_categories) && !empty($sphoto_categories)) {
foreach ($sphoto_categories as $sphoto_category_id)
{
$category = StatusPhotoCategory::findOrFail($sphoto_category_id);
$sphoto->categories()->attach($category->id);
}
}
我期望的结果是什么(邮递员表单提交确认了。但我在那里使用sphoto_categories [] ...来创建数组。不能在JS中这样做)
post.sphoto_categories = Array("2");
通过js提交表单时我得到了什么
'sphoto_categories' =>
array (
0 => '2',
)
答案 0 :(得分:1)
您收到的是Array的JSON表示。你需要json_decode()
来获得你期望的数组。
因此,请在代码中添加以下行。验证变量是否正确解码。如果JSON格式不正确,json_decode将返回null
。您可以查看json_last_error()
的值,以了解错误的原因。
$categoriesArray = json_decode($command->sphoto_categories);
// Validation.
$this->sphotoRepository->save($command->sphoto, $status->id, $command->label, $categoriesArray, $command->sphoto_tagged_users, $command->u18);