我正在使用pandas-gbq查询Google BigQuery。我想知道是否有任何可能的方法来处理pandas-gbq引发的异常。
我在// Check if any option is selected
if(isset($_POST["node_XXX"]))
{
// Retrieving each selected option
foreach ($_POST['node_XXX'] as $node)
print "You selected $node<br/>";
}
中尝试过param['node_id']
,但这给了我以下错误:
NameError:全局名称'GenericGBQException'未定义。
我试图仅将 public void hideKeyboard(Activity activity) {
InputMethodManager inputManager = (InputMethodManager) activity
.getSystemService(Context.INPUT_METHOD_SERVICE);
// check if no view has focus:
View currentFocusedView = activity.getCurrentFocus();
if (currentFocusedView != null) {
inputManager.hideSoftInputFromWindow(currentFocusedView.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
}
放在例外处,但这也不起作用。
GenericGBQException
我想要一些可以告诉我失败的根本原因的东西。