So I am trying to remove white space from one of the returned object's property with .trim() function but it doesn't work.
I already tried applying JS functions such as .replace(/\s/g,'') but it is also not working
<script>
export default {
name: 'navigation',
props: ["navigation"],
methods:{
whiteSpace: function(a){
var str = a;
str.toLowerCase();
str.trim();
console.log(str);
return str;
}
}
}
</script>
HTML
<li>
<router-link :to="{ path: whiteSpace(nav.linkTitle) }">
{{nav.linkTitle}}
</router-link>
</li>
It should return string without white space but it doesn't remove white space.
So I am trying to remove white space from one of the returned object's property with .trim() function but it doesn't work.
I already tried applying JS functions such as .replace(/\s/g,'') but it is also not working
<script>
export default {
name: 'navigation',
props: ["navigation"],
methods:{
whiteSpace: function(a){
var str = a;
str.toLowerCase();
str.trim();
console.log(str);
return str;
}
}
}
</script>
HTML
<li>
<router-link :to="{ path: whiteSpace(nav.linkTitle) }">
{{nav.linkTitle}}
</router-link>
</li>
It should return string without white space but it doesn't remove white space.
Share Improve this question edited Feb 19, 2019 at 14:00 sobolevn 18.1k6 gold badges64 silver badges62 bronze badges asked Feb 19, 2019 at 13:34 Jonas TamoševičiusJonas Tamoševičius 1852 gold badges3 silver badges13 bronze badges 2-
Why are you declaring a new
var
? Just usereturn a.toLowerCase().trim();
inside the whiteSpace method – Daniel Gale Commented Feb 19, 2019 at 13:38 - I know right, I was trying to do it in so many ways... – Jonas Tamoševičius Commented Feb 19, 2019 at 13:42
3 Answers
Reset to default 4This code:
str.toLowerCase();
returns a new value. It doesn't modify the current value, so you should have done this:
var str = a;
str = str.toLowerCase();
str = str.trim();
console.log(str);
but any ways, you could just return the trimmed value like so:
export default {
name: 'navigation',
props: ["navigation"],
methods: {
whiteSpace: function (a) {
return a.toLowerCase().trim();
}
}
}
The trim
method does not modify the object, it returns a new string.
just return with return str.trim()
So I found out the problem. .trim() function doesn't work, I tried .replace(/\s/g, "");
and it helps, thank you for your help guys :)
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743656654a4485488.html
评论列表(0条)