1

我想知道为什么我的 array.every 不是一个函数,我搜索了几个小时,但我不明白为什么它不是。有人能帮我吗 ?

function controlUserInput(inputText, appLang) {
	const regex = /\$[^$]*\$/gm;
const str = $('#formulaire-preview-textarea').val();
let m;
	var array =  populateVariable(appLang);
	
while ((m = regex.exec(str)) !== null) {
    // This is necessary to avoid infinite loops with zero-width matches
    if (m.index === regex.lastIndex) {
        regex.lastIndex++;
    }
    // The result can be accessed through the `m`-variable.
    m.forEach((match, groupIndex) => {
        console.log(`Found match, group ${groupIndex}: ${match}`);
		var isEqual = match.length==array.length;
		for (i=0; i<=array.length-1;i++){
			if(displayCpt == 4 && isEqual && match.toArray().every(function(paramInMatch){
				return $.inArray(paramInMatch, array) != -1;	
			})){
				osapi.jive.core.container.sendNotification({
				"message": "Toutes les valeurs rentrées sont correctes",
				"severity": "success"
				});
			}else{
				osapi.jive.core.container.sendNotification({
				"message": "Vous n'avez pas utilisé toutes les valeurs",
				"severity": "error"
				});
			}	
		}
	})
    };
}

4

1 回答 1

3

.toArray()是一个 jQuery 对象方法,因为你match不是一个 jQuery 对象,所以它不起作用。

您可以使用普通的 javascript Array.from(match)

于 2018-07-01T13:27:14.003 回答