打开..\wamp\bin\apache\apache2.4.9\conf\httpd.conf配置文件, <Directory "c:/wamp/www/"> ??? # ??? # Possible values for the Options directive are "None", "All", ??? # or any combination o...
分类:
其他好文 时间:
2014-10-09 21:14:58
阅读次数:
30595
操作系统:ubuntu 12.04 apt-get install bochs 错误一: 00000000000p[ ? ? ] >>PANIC<< bochsrc:10: vgaromimage directive malformed. vgaromimage: /usr/share/vgabios/vgabios.bin 改成 vgaromimage: fil...
分类:
其他好文 时间:
2014-10-02 13:08:43
阅读次数:
197
本篇介绍指令的最后两个属性,require和controller当一个指令需要和父元素指令进行通信的时候,它们就会用到这两个属性,什么意思还是要看栗子:html: 这里有两个指令,一个outer-directive指令元素,它里面又有一个inner-directive指令元素.js:app...
分类:
其他好文 时间:
2014-09-26 18:34:28
阅读次数:
277
一,指令的创建/*--Js code--*/var app = angular.module("superhero",[]);app.directive("superman",function(){return { restrict: "E", template: " Here I am to...
分类:
Web程序 时间:
2014-09-23 16:18:54
阅读次数:
223
AngularJS 是Google 推出的一套前端JS开发的 MV* (Model-View-Whatever)框架,它引入了一些编译器的概念,比如编译、链接,具有强大的双向数据绑定(Two-way binding)和前端模板功能(directive),使得我们可以轻易实现高服用、高可扩展性的脚本,...
分类:
其他好文 时间:
2014-09-16 23:26:21
阅读次数:
303
如下是php.ini中的原文说明以及默认配置: ; open_basedir, if set, limits all file operations to the defined directory ; and below. This directive makes most sense if used in a per-directory or ; per-...
分类:
Web程序 时间:
2014-09-11 17:39:22
阅读次数:
209
今天安装了一个apache,配置了一个主机,以访问提示403,查看日志提示DirectoryindexforbiddenbyOptionsdirective:/var/www/html/,百度查了一下,有人说用一下方式解决:rm-f/etc/httpd/conf.d/welcome.conf←删除测试页rm-f/var/www/error/noindex.html←删除测试页然后重启ap..
分类:
Web程序 时间:
2014-08-29 16:16:38
阅读次数:
515
1.自定义指令 .directive("dyName", [
function() {
return {
require: "ngModel",
link: function(scope, elm, iAttrs, ngModelCtr) {
ngModelCtr.$n...
分类:
Web程序 时间:
2014-08-26 20:02:57
阅读次数:
309
简单写了一点分页的功能,没有注释没有完成啥都没有,只是写了一下思路..待续 templateUrlprev{{item}}next 后期想实现的功能是,直接给page的directive数据源和需要显示的条数,directive提供接口返回当前页的数据,然后再把数据给另外一个显示...
分类:
Web程序 时间:
2014-08-22 00:19:55
阅读次数:
306
之前在angular学习笔记(十九)-指令修改dom里面已经简单的提到了angular中的指令,现在来详细的介绍 '指令'一.指令的创建:dirAppModule.directive('directive-name',function(){ var obj = { restric...
分类:
其他好文 时间:
2014-08-21 16:47:24
阅读次数:
205