1 回答

TA貢獻1805條經驗 獲得超9個贊
VALUE_OPTIONAL您可以通過將子句添加到返回數據來解決該問題:
public static function get_completion_overview_returns() {
return new external_single_structure(
array(
'course' => new external_multiple_structure(
new external_single_structure(
array(
'courseid' => new external_value(PARAM_INT, ''),
'coursename' => new external_value(PARAM_TEXT, '', VALUE_OPTIONAL),
'enrols' => new external_value(PARAM_INT, '', VALUE_OPTIONAL),
'completed' => new external_value(PARAM_INT, '', VALUE_OPTIONAL),
)
)
),
)
);
}
然后您可能應該檢查是否有空數據案例。
- 1 回答
- 0 關注
- 108 瀏覽
添加回答
舉報