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');
....
....
Solved! Go to Solution.
Views
Replies
Total Likes
@wankang ,
Based on the code provided, it looks like you are loading the wechatApiService.js file correctly using the loadLibrary() and NL.require() functions.
However, there could be other reasons why the 'graphExec' function is not being called successfully in the JSSP file. Here are a few things to check:
If none of the above suggestions resolve the issue, it may be helpful to provide more information about the specific error message or behavior that you are experiencing.
Views
Replies
Total Likes
@wankang ,
Based on the code provided, it looks like you are loading the wechatApiService.js file correctly using the loadLibrary() and NL.require() functions.
However, there could be other reasons why the 'graphExec' function is not being called successfully in the JSSP file. Here are a few things to check:
If none of the above suggestions resolve the issue, it may be helpful to provide more information about the specific error message or behavior that you are experiencing.
Views
Replies
Total Likes
browser output below issue.
JST-310000 Error while compiling script 'get_cus_WechatApiService_jssp' line 68: graphExec is not defined.
Views
Replies
Total Likes
i try to use below statment to call at cus:WechatApiService.jssp,
var resultJson = graphExec('POST', 'cgi-bin/message/template/send', para, appid);
below is a issue.
JST-310000 Error while compiling script 'get_cus_WechatApiService_jssp' line 68: graphExec is not defined.
below is the function defined at wct:wechatApiService.js
WeChatApp.prototype.graphExec = function(method, path, params, appid) {
...
}
Views
Replies
Total Likes
it should called like this var resultJson = WeChatApp.prototype.graphExec('POST', 'cgi-bin/message/template/send', para, appid);
Views
Replies
Total Likes
Views
Likes
Replies