博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[AngularJS + Webpack] require directives
阅读量:5156 次
发布时间:2019-06-13

本文共 866 字,大约阅读时间需要 2 分钟。

direictives/index.js:

module.exports = function(ngModule) {    //register all the directives here    require('./hello')(ngModule);};

 

directives/hello.js

module.exports = function(ngModule) {  ngModule.directive('webHello', function() {      return {          restrict: 'E',          scope: {},          templateUrl: 'directives/hello.html',          controller: function() {              var vm = this;              vm.greeting = "Hello Webpack!";          },          controllerAs: 'vm'      }  })};

 

directives/hello.html:

{
{vm.greeting}}

 

app/index.js:

var angular = require('angular');var ngModule = angular.module('app', []); //require directives folder, then it will find index.js filerequire('./directives')(ngModule);console.log(ngModule);

 

app/index.html:

    
Webpack + AngularJS

 

转载于:https://www.cnblogs.com/Answer1215/p/4421186.html

你可能感兴趣的文章
(前端)html与css css 19、tab栏
查看>>
一起来学习.net core程序使用中介者模式:MediatR插件
查看>>
debian9 设置
查看>>
5句话搞定ES5作用域
查看>>
Build tool
查看>>
php 小坑记录
查看>>
2018.7.28 二叉树的遍历规则(前序遍历、后序遍历、中序遍历)
查看>>
通过 poi 导入 Excel代码
查看>>
《CSS基础教程》 读书笔记三
查看>>
洛谷P4482 [BJWC2018]Border 的四种求法 字符串,SAM,线段树合并,线段树,树链剖分,DSU on Tree...
查看>>
PHP安全新闻早8点_1127
查看>>
57.Insert Interval
查看>>
PHP 五大运行模式
查看>>
CSS选项卡
查看>>
HDOJ1203 I NEED A OFFER!
查看>>
ZH奶酪:自然语言处理工具LTP语言云调用方法
查看>>
.NET中将图片文件流转成Base64字符串的实现
查看>>
js如何操作或是更改sass里的变量
查看>>
BZOJ1419: Red is good
查看>>
POJ 3308 Paratroopers (对数转换+最小点权覆盖)
查看>>