我已经完成了设置,并且 dajaxproject.com 上的所有示例都运行良好,但是我现在在使用我在更复杂的用例中学到的知识时遇到了问题。我想将几个参数与表单中的文本一起传递给 ajax 函数,并使用这些数据创建一个对象。
如果有人可以帮助我,将不胜感激。
我正在使用 jquery 和 jquery.ba-serializeobject.min.js。
阿贾克斯.py:
@dajaxice_register
def save_comment(req, form, user_username, other_username):
dajax = Dajax()
comment_form = CreateCommentForm(deserialize_form(form))
if comment_form.is_valid():
text = comment_form.cleaned_data['text']
user = User.objects.get(username=user_username)
other_user = User.objects.get(username=other_username)
other_profile = Profile.objects.get(user=other_user)
comment = other_profile.comments.objects.create(owner=user, text=text)
comment.save()
return dajax.json()
JS:
<script type="text/javascript">
function add_comment(){
var user = '{{ person.user.username }}';
var other = '{{ other.user.username }}';
var data = $('#comment_form').serialize(true);
Dajaxice.profiles.save_comment(Dajax.process, {'form': data, 'user_username': user, 'other_username': other });
return false;
}
</script>
HTML:
<div><h4>Post Comment:</h4>
<div id="comment_form_errors"></div>
<form action="" id="comment_form" accept-charset="utf-8" method="post">
{% csrf_token %}
{{ commentform.as_p }}
<p><input class="btn profile-comment-submit" id="submit_profile_comment" onclick="add_comment()" type="submit" alt="register" /></p>
<form>
</div>
在 Chrome 的调试控制台中,我得到的唯一错误是 Dajaxice:出了点问题。
如果我遗漏了任何可能重要的内容,请告诉我。
非常感谢,