当前位置: 首页>>代码示例>>Python>>正文


Python Contact.get_by_id方法代码示例

本文整理汇总了Python中models.Contact.get_by_id方法的典型用法代码示例。如果您正苦于以下问题:Python Contact.get_by_id方法的具体用法?Python Contact.get_by_id怎么用?Python Contact.get_by_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Contact的用法示例。


在下文中一共展示了Contact.get_by_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: add_contact

# 需要导入模块: from models import Contact [as 别名]
# 或者: from models.Contact import get_by_id [as 别名]
def add_contact(data, instance_id=""):
    if instance_id:
        contact = Contact.get_by_id(int(instance_id))
    else:
        contact = Contact()

    if data["name"]:
        contact.name = data["name"]

    if data["contacts"]:
        if contact.contacts:
            contact.contacts.append(data["contacts"])
        else:
            contact.contacts = data["contacts"]

    if data["email"]:
        contact.email = data["email"]

    if data["facebook"]:
        contact.facebook = data["facebook"]

    if data["twitter"]:
        contact.twitter = data["twitter"]

    contact.put()
    return contact
开发者ID:albertpadin,项目名称:bangonph,代码行数:28,代码来源:functions.py

示例2: contact

# 需要导入模块: from models import Contact [as 别名]
# 或者: from models.Contact import get_by_id [as 别名]
def contact(contact_id):
	if request.method == 'GET':
		result = Contact.get_by_id (contact_id, parent=None)

	json_results = []
	d = {'id': result.key().id(),
		 'firstName': result.firstName,
		 'lastName': result.lastName,
		 'bday': result.bday,
		 'zodiac': result.zodiac}
	json_results.append(d)

	return jsonify(contacts=json_results)
开发者ID:levimoore,项目名称:Flask-Ember-GAE,代码行数:15,代码来源:main.py

示例3: render_template

# 需要导入模块: from models import Contact [as 别名]
# 或者: from models.Contact import get_by_id [as 别名]
        listing = Listing.get_by_id(id)
        return render_template('listing.html', listing=listing)

@login_required
<<<<<<< HEAD
def landlord_landlord(id=None):
    '''Allows a user to landlord a landlord via email.'''
    landlord = Landlord.get_by_id(id)
    if landlord is None:
        flash(u'You must select a landlord to landlord','error')
        return redirect(url_for('all_listings'))
    form = LandlordForm()
=======
def contact_landlord(id=None):
    '''Allows a user to contact a landlord via email.'''
    landlord = Contact.get_by_id(id)
    if landlord is None:
        flash(u'You must select a landlord to contact','error')
        return redirect(url_for('all_listings'))
    form = ContactForm()
>>>>>>> d76fc545aab7b1e1556c2efea62c18d4a20978f6
    if form.validate_on_submit():
        if send_email(form, landlord.email_address, landlord.name):
            flash(u'Email sent!', 'success')
            return redirect(url_for('all_listings'))
        else:
            flash(u'Sending failed', 'error')
            return redirect(request.url)
        
    else:
<<<<<<< HEAD
开发者ID:JonCooperWorks,项目名称:StudentHousing,代码行数:33,代码来源:views.py


注:本文中的models.Contact.get_by_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。