call js function in the jssp
i create a cus:WechatApiService.jssp and wct:wechatApiService.js, in wct:wechatApiService.js defined a function 'graphExec', and same business required at jssp, so i call 'graphExec' at jssp, it not able to called,
at the header of jssp, i had import the js like below, it still not able to called.
<%@ page import="/nl/core/shared/nl.js"%>
<%
loadLibrary("wct:wechatApiService.js");
//required server-side dependencies
NL.ns('NL.API');
NL.require('/nl/core/shared/core.js')
.require('/nl/core/shared/json2.js')
.require('/wct/wechatApiService.js')
.require('/nl/core/jsspcontext.js');
....
....