Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
28720 Lượt xem

favorite   
I have a strange problem here,i need to call a function from controller using route,i try to catch the request and call the function but still have problems
here is my jquery code:

this.couponcode= jQuery('#apply-button');
    this.couponcode.on('click', function () {    var code = jQuery('#promotional').val();
    jQuery.ajax({type: "GET",        url:'add_numbers',        data: {'code': code, 'task': 'addcode', 'format': 'json'},        dataType: 'json',        success: function (response)        {          console.log(response)        }    });
});


and here is my python function

 

@http.route('/page/add_numbers', auth='public', type='http',website=True)    def trial_check(self, **post):
        print 'Callllllllllllllllllllllllled'        return request.render('website.register')


Ảnh đại diện
Huỷ bỏ
Tác giả

I have a strange problem here,i need to call a function from controller using route,i try to catch the request and call the function but have problems in print function ... but when i use "logging" it run perfectly

here is my jquery code:

this.ncode= jQuery('#apply-button');

this.ncode.on('click', function () {

var scode = jQuery('#prqcd').val();

jQuery.ajax({type: "GET",

url:'/page/add_numbers',

data: {'scode ': scode , 'task': 'addcode', 'format': 'json'},

dataType: 'json',

success: function (response)

{

console.log(response)

}

});

});

and here is my python function

@http.route('/page/add_numbers', type='http', auth="public", methods=['GET'], website=True)

def tag_read(self, **post):

print 'Calllled', post

return request.render('website.pricing')

Câu trả lời hay nhất

If your have multiple langs installed and active for the website, what could be breaking your ajax request is the website=True argument that cause a redirect to the same URL rewrited with the lang attached to the URL and causing the error to the ajax request.

@http.route('/page/add_numbers', auth='public', type='http')
def trial_check(self, **post):
    print 'Callllllllllllllllllllllllled'
    return request.render('website.register')
Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 1 24
4152
2
thg 2 23
2701
1
thg 3 21
18397
3
thg 7 20
12406
0
thg 4 20
3916