html
1<button class="border-0" onclick="onclick="Post_like("2", "1", 0, "2")">
js
1javascript: 2 function Post_like(user_id, answer_id, status, hoge) { 3 alert('user_id:'+user_id+'answer_id:'+answer_id+'status:'+status) 4 $.ajax({ 5 url: "/likes", 6 type: "POST", 7 data: {user_id: user_id, answer_id: answer_id, status: status, hoge}, 8 // hogeだけ、likeにネストしないようにしたい。下記の書き方であってるかについて知りたい 9 // data: {like {user_id: user_id, answer_id: answer_id, status: status} hoge} 10 dataType: "json", 11 success: function (data) { 12 console.log(data[0].text); 13 }, 14 error: function (data) { 15 console.log("error"); 16 } 17 }); 18 }
実現したいこと
回答しようとしてくれた方には申し訳ないのですが、元の質問の内容だとあまりにも回答しずらいと思ったのでピポットしました。
hogeだけ、likeにネストしないようにしたい。下記の書き方であってるかについて知りたい
data: {like {user_id: user_id, answer_id: answer_id, status: status} hoge}
回答1件
あなたの回答
tips
プレビュー