admin管理员组文章数量:1346060
What is the best way to pass C# array to javascript variable ?
I have sample code but this return character by character from C# array, I want to return in normal way like word by word in javascript array;
C# code behind:
public string[] names = { "John", "Pesho", "Maria"};
public JavaScriptSerializer javaSerial = new JavaScriptSerializer();
javascript code:
<script>
var a = '<%= this.javaSerial.Serialize(this.names) %>';
for (var i = 0; i < a.length; i++) {
console.log(a[i]);
}
</script>
This script return all words from "names" array in single char array . I want to return in normal way like ["John"] ["Pesho"] ...
What is the best way to pass C# array to javascript ?
When I run this code I get the following in console of Chrome browser:
[ Profile.aspx:44
" Profile.aspx:44
v Profile.aspx:44
a Profile.aspx:44
l Profile.aspx:44
e Profile.aspx:44
r Profile.aspx:44
i Profile.aspx:44
" Profile.aspx:44
, Profile.aspx:44
" Profile.aspx:44
p Profile.aspx:44
e Profile.aspx:44
s Profile.aspx:44
h Profile.aspx:44
o Profile.aspx:44
" Profile.aspx:44
, Profile.aspx:44
" Profile.aspx:44
m Profile.aspx:44
a Profile.aspx:44
r Profile.aspx:44
i Profile.aspx:44
a Profile.aspx:44
" Profile.aspx:44
]
What is the best way to pass C# array to javascript variable ?
I have sample code but this return character by character from C# array, I want to return in normal way like word by word in javascript array;
C# code behind:
public string[] names = { "John", "Pesho", "Maria"};
public JavaScriptSerializer javaSerial = new JavaScriptSerializer();
javascript code:
<script>
var a = '<%= this.javaSerial.Serialize(this.names) %>';
for (var i = 0; i < a.length; i++) {
console.log(a[i]);
}
</script>
This script return all words from "names" array in single char array . I want to return in normal way like ["John"] ["Pesho"] ...
What is the best way to pass C# array to javascript ?
When I run this code I get the following in console of Chrome browser:
[ Profile.aspx:44
" Profile.aspx:44
v Profile.aspx:44
a Profile.aspx:44
l Profile.aspx:44
e Profile.aspx:44
r Profile.aspx:44
i Profile.aspx:44
" Profile.aspx:44
, Profile.aspx:44
" Profile.aspx:44
p Profile.aspx:44
e Profile.aspx:44
s Profile.aspx:44
h Profile.aspx:44
o Profile.aspx:44
" Profile.aspx:44
, Profile.aspx:44
" Profile.aspx:44
m Profile.aspx:44
a Profile.aspx:44
r Profile.aspx:44
i Profile.aspx:44
a Profile.aspx:44
" Profile.aspx:44
]
Share
Improve this question
edited Feb 18, 2013 at 18:00
TheChampp
asked Feb 18, 2013 at 17:52
TheChamppTheChampp
1,4375 gold badges25 silver badges41 bronze badges
4
-
Do you mean a single array of strings, like
["John", "Pesho", "Maria"]
? – p.s.w.g Commented Feb 18, 2013 at 17:55 - I want "a" variable to be equal to C# "names" array – TheChampp Commented Feb 18, 2013 at 17:56
- "This script return all words from "names" array in single char array"... can you show us what gets rendered? – spender Commented Feb 18, 2013 at 17:58
- 1 don't put quotes around it. – Matthew Commented Feb 18, 2013 at 18:01
2 Answers
Reset to default 8Replace
var a = '<%= this.javaSerial.Serialize(this.names) %>';
with
var a = <%= this.javaSerial.Serialize(this.names) %>;
You were putting the resulting JSON into a javascript string, which would result in your example output iterating through each character of the Serialize
call.
your c# code will return a string, you have to first parse the string using JSON.parse, and then iterate through it:
var a = JSON.parse('<%= this.javaSerial.Serialize(this.names) %>');
for (var i = 0; i < a.length; i++) {
console.log(a[i]);
}
or maybe as @Matthew said, don't put quotes around it, so you won't have to parse it.
本文标签: Pass C Array To JavascriptStack Overflow
版权声明:本文标题:Pass C# Array To Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743821597a2544887.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论