这样可行,它从表单中抓取#event_note并发布。
$("#cms").on("submit", handleFormSubmit);
function handleFormSubmit() {
var newPost = {
event_note: $("#event_note").val(),
}
$.post("/api/posts", newPost, function() {});
}
allPost是一个携带各种值的对象,它已在整个程序中成功使用。这将发布allPost而不是#event_note,但我想发布两个:
$("#cms").on("submit", handleFormSubmit);
function handleFormSubmit() {
var newPost = {
end_date: allPost[listing[0]][0].end_date,
event_note: $("#event_note").val(),
}
$.post("/api/posts", newPost, function() {});
}