2017-07-02 58 views

回答

1

看起來既然你問文檔進行了更新的問題。以下是文檔中的最新代碼片段:

// Modify passed query to additionally filter by minimum age 
// if client asks us to do so. 
if (query.parameters.RestrictAge) { 
    query.filters.Age._greaterThan = 20; 
} 

var employees = query.run(); 
相關問題