简体   繁体   中英

Convert C# model to plain json-string

Is there any simple way to convert an C# -object into a plain string that is escaped and can be used by javascript?

I try to pass the string into a jQuery-function which will replace some parts of this string with real values to pass them as request-object via $.ajax .

Whatever I tried (found in the internet) doesn't work.

Currently I have:

var jsVariable = "@Html.Raw(Json.Encode(new MyClass()))"

but this throws an Uncaught SyntaxError: Unexpected identifier as of the " are not escaped correctly.

Update 1

At the end I would like to have the JSON-string like

"{"Prop1": "{0}", "Prop2":"{1}"}"

on which I can (in javascript ) call

var request = string.Format(jsVariable, value1, value2);

to enable

$.ajax({
    type: "POST",
    url: "someUrl",
    data: $.parseJson(request),
    success: function(data) {
        console.log("success");
    },
    dataType: "JSON"
})

Just get rid of the double quotes.

Make sure this is added in the script tag of your view.

var jsVariable = @Html.Raw(Json.Encode(new MyClass()))

you'd then get a javascript object with its properties - provided MyClass is defined, and is accessible in your CSHTML.

jsVariable.myProp, jsVariable.myOtherProp . . etc

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM