本文整理汇总了C#中JSONObject.Bake方法的典型用法代码示例。如果您正苦于以下问题:C# JSONObject.Bake方法的具体用法?C# JSONObject.Bake怎么用?C# JSONObject.Bake使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSONObject
的用法示例。
在下文中一共展示了JSONObject.Bake方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: StringResources
private StringResources()
{
TextAsset strings = Resources.Load(Key) as TextAsset;
if (strings != null)
{
_stringsJsonObject = new JSONObject(strings.text);
_stringsJsonObject.Bake();
}
else
{
_stringsJsonObject = new JSONObject();
}
}
示例2: GetConfig
public static JSONObject GetConfig()
{
if (_config == null)
{
if (IsLocalConfigAvailable())
{
_config = new JSONObject(PlayerPrefs.GetString(ConfigKey));
}
else
{
TextAsset config = Resources.Load("config") as TextAsset;
if (config != null)
{
_config = new JSONObject(config.text);
_config.Bake();
}
else
{
_config = new JSONObject();
}
}
}
return _config;
}
示例3: AuthorizeUser
public void AuthorizeUser(Action<JSONObject> onComplete)
{
if(_token == null) {
_token = GetToken ();
}
if(_token == "") {
String response = "{\"error\": \"no token found\"}";
JSONObject jsonResponse = new JSONObject (response);
jsonResponse.Bake ();
onComplete (jsonResponse);
return;
}
if (_userId == null) {
_userId = GetUserid ();
}
if(_userId == "") {
String response = "{\"error\": \"no userid found\"}";
JSONObject jsonResponse = new JSONObject (response);
jsonResponse.Bake ();
onComplete (jsonResponse);
return;
}
POST ("user/authorize", new Dictionary<string, string> { { "token", _token }, { "uuid", _userId } }, onComplete);
}
示例4: WaitForRequest
private IEnumerator WaitForRequest(WWW www, System.Action<JSONObject> onComplete)
{
yield return www;
// check for errors
if (www.error == null)
{
JSONObject result = new JSONObject(www.text);
result.Bake();
onComplete(result);
}
else {
Debug.Log(www.error);
JSONObject result = new JSONObject();
result.AddField("error", www.error);
result.Bake();
onComplete(result);
}
www.Dispose ();
}