我目前正在使用JavaScript填充Dynamics填充的选项集,正在使用Dynamics 365 Portal。目前,我已清空现有阵列并将显示阵列的大小设置为新阵列。
通常在这种情况下,您可以使用push,add或concat在数组上添加内容,但是我似乎无法使用这些方法。
有人对如何添加选项有任何建议吗? 下面是我当前使用的switch语句的示例:
switch (region.toString()) {
case "3546564": // value for the region
{
// Making the cleared array the same size as the new array
countyPrvOptions.length = countyList.length;
for (var j = 0; j < countyList.length; j++) {
// attempting to push each option of the new array into the display array
countyPrvOptions.push(countyList[j].toString());
}
break;
}
}