Underscore + Backbone を使用して Web サイトを構築しています。基本的に、お問い合わせフォームからメールを送信できるか知りたいです。
これは私のバックボーン モデルです:
class ContactModel extends Backbone.Model
defaults :
message : 'Default message'
validate : ( attrs_ ) ->
# Validation Logique
sync : (method, model) ->
xhr = $.ajax
dataType: "json"
type: "POST"
url: # HERE I WANT TO SEND DATA TO GOOGLE APPENGINE
data: model.toJSON()
success : ( jqXHR, textStatus ) =>
console.log 'Success', 'jqXHR_ :', jqXHR, 'textStatus_ :', textStatus
error : ( jqXHR_, textStatus_, errorThrown_ ) ->
console.log 'Success', 'jqXHR_ :', jqXHR_, 'textStatus_ :', textStatus_, 'errorThrown_ :', errorThrown_
私の質問は: Python を使用してモデルのメッセージ属性を私のメール アドレスに送信するために、私のアプリ エンジンでモデルから送信された JSON を取得することは可能ですか?