-
-
Save ety001/e9f2dbbfded527b2e62b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _data = { | |
web_title : 'test_web_title', | |
url : 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614', | |
url_hash : '3335cf59a624847a6638ce19c2b98b02', | |
comment_text : '<script>alert(123)</script>' | |
}; | |
写一个算法,遍历_data,生成下面的结果. | |
Result: | |
{ web_title: 'test_web_title' } | |
------- | |
{ web_title: 'test_web_title', | |
url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614' } | |
------- | |
{ web_title: 'test_web_title', | |
url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614', | |
url_hash: '3335cf59a624847a6638ce19c2b98b02' } | |
------- | |
{ web_title: 'test_web_title', | |
url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614', | |
url_hash: '3335cf59a624847a6638ce19c2b98b02', | |
comment_text: '<script>alert(123)</script>' } | |
------- | |
{ url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614' } | |
------- | |
{ url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614', | |
url_hash: '3335cf59a624847a6638ce19c2b98b02' } | |
------- | |
{ url: 'http%3A%2F%2Fwww.demohour.com%2Fprojects%2F351614', | |
url_hash: '3335cf59a624847a6638ce19c2b98b02', | |
comment_text: '<script>alert(123)</script>' } | |
------- | |
{ url_hash: '3335cf59a624847a6638ce19c2b98b02' } | |
------- | |
{ url_hash: '3335cf59a624847a6638ce19c2b98b02', | |
comment_text: '<script>alert(123)</script>' } | |
------- | |
{ comment_text: '<script>alert(123)</script>' } | |
------- |
Author
ety001
commented
Dec 21, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment