我认为我正确地解释了这个内部字段名称,但是我使用它来匹配的引用不起作用。
...字段=如何%5Fx0020%5Fmany%5Fx0020%5FQuestions%5Fx
所以我认为这个字段名是How_x0020_many_x0020_Questions_x
我在这里使用它:
$.each(BothArrays.AryObjctvs, function(indx,contents) { // how to use: console.log(indx + "-" + contents.Title);
var QSubsetAry = $.grep(BothArrays.Exam_Q, function(n){
return (n.Objectives.toLowerCase().indexOf(contents.Title.toLowerCase()) >= 0);
})
//THis shows me the correct number of recs when the array is filtered.
console.log("QSubsetAry.length=" + QSubsetAry.length);
//this is always zero
console.log("Occurences should = " + contents.How_x0020_many_x0020_Questions_x)
});
答案 0 :(得分:0)
SharePoint将空格转换为_x0020_
以获取内部字段名称,而下划线则编码为%5F。是的,你是对的。