我正在使用 Underscore + Backbone 构建一个网站。基本上我想知道是否可以从联系表格发送电子邮件。
这是我的骨干模型:
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_
我的问题是:是否可以在我的应用引擎中检索从我的模型发送的 JSON,以便使用 python 将模型的消息属性发送到我的电子邮件地址