1

如何显示收益回报的价值?

这是我的代码:

public void getTypeRoomb1(string buildingNUM){
   StartCoroutine(getjsonroomtype1(buildingNUM));
}
public IEnumerator getjsonroomtype1(string buildingNUM){
        WWW request = new WWW(mainurl+"json_typeroom.php?building="+buildingNUM+"");   
        yield return request;    
        if (request.error == null || request.error == "")   
        {   
            var N = JSON.Parse(request.text);    
            if(N["type"].Count < 1){    
                notFoundText = "Not found";     
            }else{    
                yield return N; // Value return this line.    
            }    
        }else    
        {    
            Debug.Log("WWW error: " + request.error);    
        }    
    }

我找到要返回值的行。如何显示值?

建议我plaese!

4

2 回答 2

1

您必须将“返回值”保存在其他地方,例如获取对其他对象的引用并为其提供值。

Unity 中的协程不能返回任何内容。

于 2013-09-25T10:57:12.623 回答
1

您可以通过专用方法传递产生的值:

static IEnumerable LogValues(IEnumerable enumerable)
{
    foreach (var value in enumerable)
    {
        Debug.Log(value.ToString());
        yield return value;
    }
}

// ..
// Keep getjsonroomtype1 untouched
// ..

public void getTypeRoomb1(string buildingNUM)
{
    StartCoroutine(LogValues(getjsonroomtype1(buildingNUM)));
}
于 2013-09-25T10:59:03.267 回答