You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to tokenize value with custom function in engineOptions section:
engineOptions: {
profile: "speed",
tokenize: function(str) {
console.log(typeof(str), str) // <= here you'll get something like 'string' '{"name": "Itemname"}' not just Itemname
return someTokenizeFunction(str)
}
The text was updated successfully, but these errors were encountered:
snussik
changed the title
engineOptions gets stingified object, not index value
engineOptions gets stringified object, not index value
Dec 30, 2020
If you try to tokenize value with custom function in engineOptions section:
The text was updated successfully, but these errors were encountered: