親愛なるすべての私は次のようなエラーを取得しています
Cannot find JSON.stringify()
一部のブラウザー (IE < 8 など) はネイティブでサポートしていませんが、http: //www.json.org/json2.js からダウンロード可能な json2.js へのスクリプト参照を追加することでこれを克服できます。
/// 脚本
stringifyJson: function (data, replacer, space) { // replacer and space are optional
if ((typeof JSON == "undefined") || (typeof JSON.stringify == "undefined"))
throw new Error("Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js");
return JSON.stringify(ko.utils.unwrapObservable(data), replacer, space);
},
json2.js
asp.net プロジェクトを参照するにはどうすればよいですか?