콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
29125 화면

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')


아바타
취소
작성자

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')

베스트 답변

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')
아바타
취소
관련 게시물 답글 화면 활동
2
1월 24
4816
2
2월 23
3021
1
3월 21
18708
3
7월 20
12728
0
4월 20
4161