我明白了
$account->user
如何将其转换为JSON格式以便轻松使用?
当我使用{"obj":"{\"name\":\"john welson\",\"age\":\"28\"}"}
时,我收到此错误:
" json_decode()期望参数1为字符串,给定数组"。
这就是我想要做的事情:
json_decode($json)
它将名称保存在post表中。
答案 0 :(得分:0)
你的逃脱有点过了,试试这个。
json_decode("{\"obj\":{\"name\":\"john welson\",\"age\":\"28\"}}");
答案 1 :(得分:0)
<强>的javascript:强>
发送的信息将是这样的对象: {数据:JSON.stringfly( the_object )}
Laravel控制器:
...(请求$请求) { $ data = json_decode($ request-&gt; data ,true); ... }