无法使用onsen cordova运行angular js代码 [英] Unable to run angular js code with onsen cordova

查看:196
本文介绍了无法使用onsen cordova运行angular js代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想运行一个简单的Angular js代码,但我不能这样做
在Cordova与Onsen ui



我得到一个错误链接





错误:





以下是我的目录结构:
$ b

解决方案

解决它...



实际上,当我安装jquery时,我只将 jquery.js 文件从jquery文件夹复制到我的js文件夹,但现在我将整个jquery文件夹复制到js文件夹中并成功执行...



感谢您的支持。


I want to run a simple Angular js code but I am not able to do it in Cordova with Onsen ui

I am getting an error link below :

https://docs.angularjs.org/error/ng/areq?p0=HelloCtrl&p1=not%20a%20function,%20got%20undefined

I am referring this page :

https://onsen.io/blog/onsen-ui-tutorial-angularjs-essentials-for-using-onsen-ui-part-1/

Using Onsen 1

p1.html:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
<meta http-equiv="Content-Security-Policy"/>
<link href="css/bootstrap.min.css" rel="stylesheet"> 
<link rel="stylesheet" href="css/onsenui.css">
<link rel="stylesheet" href="css/onsen-css-components.css">
<link rel="stylesheet" href="css/sliding_menu.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script src="js/jquery.js"></script> 
<script src="js/bootstrap.min.js"></script>
<script src="js/angular/angular.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>

 <script>

 ons.bootstrap();

 var myApp = angular.module('myApp',[]);

 myApp.controller('HelloCtrl', function($scope){
     $scope.name = "Onsen UI!";
 });

</script>
</head>
<body ng-app="myApp">
<div ng-controller="HelloCtrl">
<input type="text" ng-model="name">
<p>Hello {{name}}</p>
</div> 
</body>
</html>

Output :

Error :

Below is my Directory structure :

解决方案

Solved It...

Actually when I installed jquery I copied only the jquery.js file from the jquery folder into my js folder but now I copied the whole jquery folder into the js folder and It executed successfully...

Thanks for your support guys.

这篇关于无法使用onsen cordova运行angular js代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆