Using JSON is friendlier and more object-oriented than using string to return data. Some _json

Source: Internet
Author: User
Tags json
Previous programs:
Copy Code code as follows:

viewdata["msg"] = "{result:true,filename:\" "+ New FileInfo (request.files[0). FileName). Name +
"\", fileurl:\ "" + FILEURL. Replace ("\" "," ") +" \ "}";

The program after refactoring:
Copy Code code as follows:

Jsonresult j = Json (new
{
result = True,
FileName = new FileInfo (Request.files[0]. FileName). Name,
FILEURL = FileUrl. Replace ("\", "")
});
viewdata["msg"] = j.data.tostring ();

Obviously, the second way is more readable, the first kind of performance is slightly better than the second, but for the program, performance is only one aspect

In the case of object-oriented programs, it is also important to write code that is not error-prone, so it is recommended that you use the JSON provided by C # when returning complex note characters without having to spell out the JSON format returned by JS.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.