「Unity/Csharp/Json/NewtonJson」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→WebGLで出力したとき) |
|||
行45: | 行45: | ||
</pre> | </pre> | ||
− | == | + | ==WebGLでobject.onAbortなエラーがでるとき== |
− | JsonConvert.SerializeObjectや、JsonConvert. | + | WebGLで出力したとき、 |
+ | JsonConvert.SerializeObjectや、JsonConvert.DeserializeObjectの部分で、以下object.onAbortなエラーが出る場合。 | ||
<pre> | <pre> | ||
an error occurred runnning the unity content on this page. | an error occurred runnning the unity content on this page. | ||
行57: | 行58: | ||
at object.onAbort(http://localhost:54514/Build/UnityLoader.js:4:11273) | at object.onAbort(http://localhost:54514/Build/UnityLoader.js:4:11273) | ||
</pre> | </pre> | ||
+ | |||
+ | #https://www.nuget.org/packages/Newtonsoft.Json をDLし、.nupkgを.zipに変更し、解凍。 | ||
+ | #lib\netstandard2.0の下のNewtonsoft.Json.dllをAssets/Pluginsの下に設置するのではなく、unitypackageを使ってDLLを設置すれば改善した。 | ||
==参考== | ==参考== |
2021年7月5日 (月) 17:50時点における版
NewtonJsonをDL&インストール
https://github.com/jilleJr/Newtonsoft.Json-for-Unity#readme からunitypackageをDLしインストール
サンプル
using UnityEngine; using UnityEngine.UI; using Newtonsoft.Json; using System; public class SampleScene : MonoBehaviour { [Serializable] public class Item { public string Name; public int Value; } void Start() { GameObject.Find("Button").GetComponent<Button>().onClick.AddListener(OnClick); } void OnClick() { Item itemSource = new Item(); itemSource.Name = "aaa"; itemSource.Value = 111; string json = JsonConvert.SerializeObject(itemSource); Item item = JsonConvert.DeserializeObject<Item>(json); Debug.Log("name=" + item.Name + " value=" + item.Value); GameObject.Find("Text").GetComponent<Text>().text = "name=" + item.Name + " value=" + item.Value; }
ログ:name=aaa value=111
サンプル(デコードのみ)
void OnClick() { string json = "{\"Name\": \"aaaa\",\"Value\": 1111}"; Item item = JsonConvert.DeserializeObject<Item>(json); Debug.Log("name=" + item.Name + " value=" + item.Value); GameObject.Find("Text").GetComponent<Text>().text = "name=" + item.Name + " value=" + item.Value; }
WebGLでobject.onAbortなエラーがでるとき
WebGLで出力したとき、 JsonConvert.SerializeObjectや、JsonConvert.DeserializeObjectの部分で、以下object.onAbortなエラーが出る場合。
an error occurred runnning the unity content on this page. see your browser javascript console for more info. the error was: uncaught abort(64) at error at jsStackTrack(Build.wasm.framework.unityweb:8:15602) at stackTrace [Object.stackTrace] (Build.wasm.framework.unityweb:8:15773) at object.onAbort(http://localhost:54514/Build/UnityLoader.js:4:11273)
- https://www.nuget.org/packages/Newtonsoft.Json をDLし、.nupkgを.zipに変更し、解凍。
- lib\netstandard2.0の下のNewtonsoft.Json.dllをAssets/Pluginsの下に設置するのではなく、unitypackageを使ってDLLを設置すれば改善した。