Have problem to read data from json. My login.json file
{
    "Users": [
    {
      "login" : "admin",
      "password" : "admin"
      }
    ]
}
Here is my login.xml.view
<core:View
    controllerName="sap.ui.demo.myFiori.view.login"
    xmlns="sap.m"
    xmlns:l="sap.ui.layout"
    xmlns:core="sap.ui.core" >      
    <Page
    title="{i18n>LoginIn}">
    <VBox       
        class="marginBoxContent" >
  <items>
        <Label text="User" />
      <Input
        id="nameInput"
        type="Text"
        placeholder="..." />
        <Label text="password" />
    <Input
        id="passwInput"
        type="Password"
        placeholder=" ..." />
    <Text id="description" class="marginOnlyTop" />
<Button text="Login"   press="handleContinue" />
        </items>
    </VBox>
    </Page>
</core:View>
and login.controller.js
jQuery.sap.require("sap.ui.demo.myFiori.util.Formatter");
sap.ui.controller("sap.ui.demo.myFiori.view.login", {
    handleContinue : function (evt) {
        var name = this.getView().byId("nameInput").getValue(); 
        var paswd = this.getView().byId("passwInput").getValue(); 
    if (name == "log" && paswd == "pass") {
            var context = evt.getSource().getBindingContext();
            this.nav.to("Master", context); 
}
else {
        jQuery.sap.require("sap.m.MessageToast");
        sap.m.MessageToast.show("Wrong login");
        }
}
});
This login screen works, but I can't get login and password from json file and currently these data are taken from if sentence, which is not good. Any suggestions?
 
     
    