js 对象与string之间的转换

Posted 流星曳尾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 对象与string之间的转换相关的知识,希望对你有一定的参考价值。

//es5
interface JSON {
    /**
     * Converts a javascript Object Notation (JSON) string into an object.
     * @param text A valid JSON string.
     * @param reviver A function that transforms the results. This function is called for each member of the object.
     * If a member contains nested objects, the nested objects are transformed before the parent object is.
     */
    parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
    /**
     * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
     * @param value A JavaScript value, usually an object or array, to be converted.
     * @param replacer A function that transforms the results.
     * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
     */
    stringify(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
    /**
     * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
     * @param value A JavaScript value, usually an object or array, to be converted.
     * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.
     * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
     */
    stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;
}

以上是关于js 对象与string之间的转换的主要内容,如果未能解决你的问题,请参考以下文章

如何在ArrayBuffer对象与字符串之间进行互相转换

jQuery对象与JS原生dom对象之间的转换

js中js数组对象与json之间的转换

js中js数组对象与json之间的转换

Java基础基本数据类型包装类int与String 之间的相互转换

JS对象JSON字符串之间的相互转换