我正在使用Django LDAP身份验证。默认情况下,我们会在$('#tbltest tbody').on('click', 'tr', function (e) {
debugger;
if ($(e.target).is("[id^=checkId_],[id^=checkId_] i")) {
alert("Button 1 is Click");
} else if ($(e.target).is("[id^=checkId2_],[id^=checkId2_] i")) {
alert("Button 2 is Click");
}
return;
});
中提供LDAP设置,以便settings.py
文件可以访问LDAP凭据的LdapBackend
文件。但在我的情况下,我需要settings.py
文件来查看LDAP设置的单独json文件。我该怎么办?
由于
答案 0 :(得分:0)
您可以在IF
和import json。{/ p>中read the credentials from a JSON file
答案 1 :(得分:0)
您需要加载json文件,然后使用json模块读取它。 json.load()将立即加载整个文件并将其转换为python对象。
import json
with open("filename.json") as json_file:
ldap_stuff = json.load(json_file)