I have a ionic app and I want no data class;
set sashelp.class;
if _n_=1 then sex='';
run;
%macro test2(parameter1= , parameter2=, sex=);
DATA data_gender;
SET class(
%if %length(%superq(sex)) %then %do;
where=(sex="&sex.")
%end;
);
RUN;
%mend;
%test2(sex=)
%test2(sex=%str( ))
or nav
for the login page. I have worked out to remove the title with ..
title
but the nav at the bottom still stays on the screen
<ion-view title="Login" hide-nav-bar="true" >
<ion-content padding="true" has-header="false">
答案 0 :(得分:0)
您的登录状态不得在view
内。这些标签来自settings
视图。你只需简单地删除它。
$stateProvider.state('login',
{
url: '/login',
templateUrl: 'login.html'
}
})
我希望有所帮助!