我试图获取函数的结果(ajaxGetPreference,包含ajax调用),我的代码:
highlight_pref = 0;
highlight_pref = ajaxGetPreference('highlight');
console.log(highlight_pref);`
我总是0。我应该做这样的事情(见下文)?我看到了类似的问题,我不知道如何处理参数'突出显示'
ajaxGetPreference(function() {
console.log(highlight_pref);
});
感谢您的帮助!