|
版本: |
BeX5V3.5 |
小版本号: |
|
|
|
数据库: |
MySQL |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
Windows 其它 |
浏览器: |
Chrome |
|
|
本帖最后由 xjtfq 于 2018-5-9 11:32 编辑
代码如下:
function queryGangWei()
{
//查询岗位列表
var gangweidata = this.comp("gangweiData");
var orgName = this.getContext().getCurrentOrgName();
var gangweiList=gangweidata.find("sFName",orgName , false, false, true, true);
this.comp("fAZQK").options.length=0;
var newOption1;
document.myform.selCity.options.length=0;
for (var j in gangweiList)
{
newOption1=new Option(gangweiList[j], gangweiList[j]);
this.comp("fAZQK").options.add(newOption1);
}
}
错误码如下:
this.comp is not a function
[url=]隐藏详细[/url]
TypeError: this.comp is not a function at queryGangWei (http://localhost:8080/x5/UI2/v_df55202100a84575b841b1b2405be6c6l_zh_CNs_desktopd_pc/shebeixinxi/sbjbxx/process/sbjbxxgl/sbjbxxwh.js:43:29) at http://localhost:8080/x5/UI2/v_df55202100a84575b841b1b2405be6c6l_zh_CNs_desktopd_pc/shebeixinxi/sbjbxx/process/sbjbxxgl/sbjbxxwh.js:6:5 at Object.context.execCb (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:2373:33) at Object.Module.check (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:1170:55) at Object.Module.enable (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:1509:22) at Object.Module.init (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:1087:26) at callGetModule (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:1536:63) at Object.context.completeLoad (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:2172:21) at HTMLScriptElement.context.onScriptLoad (http://localhost:8080/x5/UI2/v_7f70cb75aa61433db4e9cf9387a72e18l_zh_CNs_desktopd_pc/system/lib/require/require.2.1.10.js:2399:29)
|
|