我一直在尝试从我的 visualforce 页面调用扩展方法。
<apex:page title="Title" standardController="Account" showChat="true" tabStyle="Account" standardStylesheets="true" showHeader="true" extensions="AccountExtension">
<script type="text/javascript">
Sfdc.onReady(function() {
if({!isTrue}){
// Do Something
}
});
</script>
我的扩展中的方法:
public with sharing class AccountExtension {
public boolean isTrue(){
return true;
}
}
当我尝试保存它时,我收到消息:错误:未知属性 'AccountStandardController.isTrue'
任何的想法?