admin管理员组文章数量:1339584
I have a public property returned from my code-behind class to aspx
page:
window.MyWIndow.IsFull = '<%=this.IsFull%>';
In code-behind it is defined this way:
public bool IsFull
{
get;
set;
}
Now, when I use it in my javascript file, I have the following code:
var isShow = myself.IsFull;
This way isShow
is either 'True'
or 'False'
I need to convert it on the page level, so isShow
is boolean
instead of string
.
So I can write the if else
logic
How can I do it?
I have a public property returned from my code-behind class to aspx
page:
window.MyWIndow.IsFull = '<%=this.IsFull%>';
In code-behind it is defined this way:
public bool IsFull
{
get;
set;
}
Now, when I use it in my javascript file, I have the following code:
var isShow = myself.IsFull;
This way isShow
is either 'True'
or 'False'
I need to convert it on the page level, so isShow
is boolean
instead of string
.
So I can write the if else
logic
How can I do it?
Share Improve this question edited Oct 13, 2017 at 13:30 Suraj Rao 29.6k11 gold badges95 silver badges104 bronze badges asked Jan 18, 2017 at 23:28 genegene 2,1089 gold badges48 silver badges111 bronze badges 1- 2 "tried different things" ... always show what you tried – charlietfl Commented Jan 18, 2017 at 23:35
4 Answers
Reset to default 10You can use JSON.parse('true');
JSON.parse(isShow.toLowerCase());
Try the example below.
var result = ['True', 'False']
var isShow = result[Math.round(Math.random())];
console.log(JSON.parse(isShow.toLowerCase()));
If you know it's always going to return the string True and False, you could just use;
window.MyWindow.IsFull = '<%=this.IsFull%>' === "True";
Alternative method is
window.MyWIndow.IsFull = <%=this.IsFull.ToString().ToLower()%>;
Note, no quotes
wrong answer is wrong...
A couple of options. You can use the built in
Boolean
object wrapper like this:var string = myself.IsFull var isShow = new Boolean(string.toLowercase);
or use the logical NOT operator twice like this:
var string = myself.IsFull var isShow = !(!string.toLowercase);
edit: but why???? [![enter image description here][1]][1]
[1]: https://i.sstatic/359zg.png
本文标签: type conversionHow to convert string to Boolean in javascriptStack Overflow
版权声明:本文标题:type conversion - How to convert string to Boolean in javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743592828a2507410.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论