对不起,这可能是一个简单的,但它让我难住了。我试图遍历这个数组并注销每个值,但脚本正在注销一个字符串对象。
propertiesToSanitize = ["title", "description", "place_name"]
$.each propertiesToSanitize, ->
console.log this
转换为 jQuery 为
var propertiesToSanitize;
propertiesToSanitize = ["title", "description", "place_name"];
$.each(propertiesToSanitize, function() {
return console.log(this);
});
正在返回:
String
0: "t"
1: "i"
2: "t"
3: "l"
4: "e"
length: 5
知道为什么它返回这个而不是“标题”或任何其他值吗?提前感谢您的帮助。