我正在尝试通过从 urls.py 调用 url 模式来更新数据库中的字段。模式定义如下(为了安全起见,代码略有改动):
(r'^pref/(?P<key>\d+)/(?P<value>\d+)/$', 'client.views.update_pref'),
键:ENABLE_T(int 值 7,在 constants.py 中定义)
值:0(布尔 int 为 False)
在 Javascript 中,我试图在这段代码下调用 /pref/ENABLE_T/0 ,但它根本没有进入$.ajax()
函数。
$.ajax('/pref/7/0/', {
dataType: 'json',
success: function(data) {
alert("Success");
},
error: function() {
// TODO: handle error
alert("Preferences Error");
}
});
我宁愿使用 ENABLE_T 而不是 7 来调用该常量。有什么建议么?谢谢!