0

オブジェクトによって事前入力されるフォームがあります。フレームワーク: Pyramid、IDE: PyCharm

このページには、ユーザーが追加の電話番号と電子メールを追加するための追加フィールドがあります。たとえば、個々の phone オブジェクト {tag:work, value:555} は、person オブジェクト内のphones[] 配列にプッシュされます。次に、その新しい情報をサーバーに送り返す必要があります。

jQuery

// Person
var person = {
    username : profileData.username,
    firstName : "",
    lastName : "",
    phones : [],
    emails : [],
    organization : "",
    title : ""
}

// Original Profile
person.firstName = $('#profile-firstname').val();
person.lastName  = $('#profile-lastname').val();
person.organization = $('#profile-company').val();
person.title  = $('#profile-title').val();

// Added Profile
var phoneObjs   = {};
var emailObjs   = {};
var extraPhones = [];
var extraEmails = [];
var addedPhones = $('.added_phone');
var addedEmails = $('.added_email');

addedPhones.each( function(i) {
    //console.log(i);
    var tag = $(this).children("label").text();
    var value = $(this).children("input").val();
    phoneObjs = $(this).map(function(i,el) {
        var $el = $(el);
        return {
            tag: tag,
            value:value
        };
    }).get();
    person.phones.push(phoneObjs);
    console.log(phoneObjs);
});

パイソン

def save_profile(self):
    success_msgs = ['Saved! Worry not, nothing sent to the NSA... as far as we know', "Profile Saved, doesn't it feel great to be updated?"]
    error_msgs = ['Internets are clogged up, our monkeys are checking it out', 'Hmm, everything look correct below?', "A BUG! Probably in our code, we're checking it out"]
    try:
        json = self.request.json_body
        first_name = str(json['firstName'])
        last_name = str(json['lastName'])
        organization = str(json['organization'])
        title = str(json['title'])
        phones = (json['phones'])
        emails = (json['emails'])
        self.profiles.update(firstName=first_name, lastName=last_name, organization=organization, title=title, emails=emails, phones=phones)
        #print phones
        value = {'result': 'success', 'message': random.choice(success_msgs)}
    except Exception, err:
        print err
        value = {'result': 'error', 'message': random.choice(error_msgs)}

    #returns a json response
    return self.respond(value)

profile.update

if tools.not_blank(phones):
        lst = phones
        cnt = len(lst)
        current = profile.phones
        for x in xrange(cnt):
            o = lst[x]
            #key = o.get("key", o.get("guid", None))
            lbl = o["label"]
            tag = o.get("tag", None)
            c = [c for c in current if c.label == lbl]
            c = c[0] if len(c) > 0 else None
            if c:
                m, k = self.codex.decode_composite(c.id)
                if tools.not_blank(tag):
                    tag = tag.lower().title()
                    if c.tag != tag:
                        c.tag = tag
                        self.get_query("UPDATE member_phone SET Type = @tag WHERE ID = @id;", {"tag": tag, "id": k}).update()
            else:
                #create a new email address for this member
                self.members.register_phone_number(member=member, telephone=lbl, tag=tag)

    if tools.is_blank(remove):
        return profile


IDE はここで「リスト インデックスは str ではなく整数でなければなりません」というエラーをスローします。

何かご意見は?ここで何が問題なのかわかりません。

self.profiles.update(firstName=first_name, lastName=last_name, organization=organization, title=title, emails=emails, phones=phones)


フィールドが追加されたフォームは、ここに正しいオブジェクトを作成します

ここに画像の説明を入力 ここに画像の説明を入力

4

1 に答える 1