posted by 네코냥이 2015. 1. 15. 20:45

http://msdn.microsoft.com/ko-kr/library/ie/ee532932(v=vs.94).aspx

posted by 네코냥이 2014. 10. 25. 09:53


다수의 모듈 사용

방법 1

각각의 모듈들을 불러온다.

후에 다음과 같은 방법으로 통합


예제1

var app = angular.module('app', ['phonecat', 'computer']);


예제2

// in main app.js file
var app = angular.module('myapp', 
          ['myapp.routers', 'myapp.directives', 'myapp.filters']);

// in filters.js
angular.module('myapp.filters', []).filter(....)

// in routers.js
angular.module('myapp.routers', []).router(....)

// in directives.js
angular.module('myapp.directives', []).directive(....)



방법 2


ng-app 대신 ng-module 사용.


<!DOCTYPE html>
<html>
    <head>
        <script src="angular.js"></script>
        <script src="angular.ng-modules.js"></script>
        <script>
          var moduleA = angular.module("MyModuleA", []);
          moduleA.controller("MyControllerA", function($scope) {
              $scope.name = "Bob A";
          });

          var moduleB = angular.module("MyModuleB", []);
          moduleB.controller("MyControllerB", function($scope) {
              $scope.name = "Steve B";
          });
        </script>
    </head>
    <body>
        <div ng-modules="MyModuleA, MyModuleB">
            <h1>Module A, B</h1>
            <div ng-controller="MyControllerA">
                {{name}}
            </div>
            <div ng-controller="MyControllerB">
                {{name}}
            </div>
        </div>

        <div ng-module="MyModuleB">
            <h1>Just Module B</h1>
            <div ng-controller="MyControllerB">
                {{name}}
            </div>
        </div>
    </body>
</html>


방법3. 기존 모듈에 컨트롤러를 추가


처음 모듈 선언.

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


아래와 같은 방식으로 선언된 모듈 불러오기.

var app = angular.module('ModuleName');



방법4. 모듈의 통합


... 자료 찾는중.

posted by 네코냥이 2014. 9. 25. 10:15

[angular] $broadcast, $emit, $on AngularJS 2014/09/12 17:26


출처: http://blog.naver.com/suy6107/220119971824


$broadcast

==> 부모 컨트롤러에서 자식 컨트롤러로 이벤트를 방송

$emit

==> 자식 컨트롤러에서 부모 컨트롤러로 이벤트 방송

$on

==> 방송한 이벤트를 받는다.

<부모>

$scope.$broadcast("parentToChildEvent", args); //자식에게 방송

<자식>

$scope.$on("parentToChildEvent", function(event, args) {

//이벤트 처리

});

<자식>

$scope.$emit("childToParentEvent", args); //부모에게 방송

<부모>

$scope.$on("childToParentEvent", function(event, args) {

//이벤트 처리

});

posted by 네코냥이 2014. 3. 7. 09:41

JQuery Ajax 간편사용법.pdf



jQuery.ajax()


jQuery.ajax( url [, settings ] )Returns: jqXHR

Description: Perform an asynchronous HTTP (Ajax) request.

  • version added: 1.5jQuery.ajax( url [, settings ] )

    • url
      Type: String
      A string containing the URL to which the request is sent.
    • settings
      A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) below for a complete list of all settings.
  • version added: 1.0jQuery.ajax( [settings ] )

    • settings
      A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup().
      • accepts (default: depends on DataType)
        The content type sent in the request header that tells the server what kind of response it will accept in return.
      • async (default: true)
        Type: Boolean
        By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Cross-domain requests and dataType: "jsonp"requests do not support synchronous operation. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active. As of jQuery 1.8, the use of async: false with jqXHR ($.Deferred) is deprecated; you must use the success/error/complete callback options instead of the corresponding methods of the jqXHR object such as jqXHR.done() or the deprecated jqXHR.success().
      • beforeSend
        Type: FunctionjqXHR jqXHR, PlainObject settings )
        A pre-request callback function that can be used to modify the jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object before it is sent. Use this to set custom headers, etc. The jqXHR and settings objects are passed as arguments. This is an Ajax Event. Returning false in the beforeSend function will cancel the request. As of jQuery 1.5, the beforeSend option will be called regardless of the type of request.
      • cache (default: true, false for dataType 'script' and 'jsonp')
        Type: Boolean
        If set to false, it will force requested pages not to be cached by the browser. Note: Setting cacheto false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET.
      • complete
        Type: FunctionjqXHR jqXHR, String textStatus )
        A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success""notmodified""error""timeout""abort", or "parsererror"). As of jQuery 1.5, the complete setting can accept an array of functions. Each function will be called in turn. This is anAjax Event.
      • contents
        An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type. (version added: 1.5)
      • contentType (default: 'application/x-www-form-urlencoded; charset=UTF-8')
        Type: String
        When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding.
      • context
        This object will be made the context of all Ajax-related callbacks. By default, the context is an object that represents the ajax settings used in the call ($.ajaxSettings merged with the settings passed to $.ajax). For example, specifying a DOM element as the context will make that the context for the complete callback of a request, like so:
        1
        2
        3
        4
        5
        6
        $.ajax({
        url: "test.html",
        context: document.body
        }).done(function() {
        $( this ).addClass( "done" );
        });
      • converters (default: {"* text": window.String, "text html": true, "text json": jQuery.parseJSON, "text xml": jQuery.parseXML})
        An object containing dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response. (version added: 1.5)
      • crossDomain (default: false for same-domain requests, true for cross-domain requests)
        Type: Boolean
        If you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain to true. This allows, for example, server-side redirection to another domain.(version added: 1.5)
      • data
        Type: PlainObject or String
        Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).
      • dataFilter
        Type: FunctionString data, String type ) => Object
        A function to be used to handle the raw response data of XMLHttpRequest.This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter.
      • dataType (default: Intelligent Guess (xml, json, script, or html))
        Type: String
        The type of data that you're expecting back from the server. If none is specified, jQuery will try to infer it based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). The available types (and the result passed as the first argument to your success callback) are:
        • "xml": Returns a XML document that can be processed via jQuery.
        • "html": Returns HTML as plain text; included script tags are evaluated when inserted in the DOM.
        • "script": Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter, "_=[TIMESTAMP]", to the URL unless the cache option is set to trueNote: This will turn POSTs into GETs for remote-domain requests.
        • "json": Evaluates the response as JSON and returns a JavaScript object. The JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown. As of jQuery 1.9, an empty response is also rejected; the server should return a response of nullor {} instead. (See json.org for more information on proper JSON formatting.)
        • "jsonp": Loads in a JSON block using JSONP. Adds an extra "?callback=?" to the end of your URL to specify the callback. Disables caching by appending a query string parameter, "_=[TIMESTAMP]", to the URL unless the cache option is set to true.
        • "text": A plain text string.
        • multiple, space-separated values: As of jQuery 1.5, jQuery can convert a dataType from what it received in the Content-Type header to what you require. For example, if you want a text response to be treated as XML, use "text xml" for the dataType. You can also make a JSONP request, have it received as text, and interpreted by jQuery as XML: "jsonp text xml." Similarly, a shorthand string such as "jsonp xml" will first attempt to convert from jsonp to xml, and, failing that, convert from jsonp to text, and then from text to xml.
      • error
        Type: FunctionjqXHR jqXHR, String textStatus, String errorThrown )
        A function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout""error""abort", and "parsererror". When an HTTP error occurs, errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." As of jQuery 1.5, the error setting can accept an array of functions. Each function will be called in turn. Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an Ajax Event.
      • global (default: true)
        Type: Boolean
        Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered. This can be used to control various Ajax Events.
      • headers (default: {})
        An object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport. The header X-Requested-With: XMLHttpRequest is always added, but its default XMLHttpRequest value can be changed here. Values in the headers setting can also be overwritten from within the beforeSend function. (version added: 1.5)
      • ifModified (default: false)
        Type: Boolean
        Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data.
      • isLocal (default: depends on current location protocol)
        Type: Boolean
        Allow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default. The following protocols are currently recognized as local: file*-extension, and widget. If the isLocal setting needs modification, it is recommended to do so once in the $.ajaxSetup() method. (version added: 1.5.1)
      • jsonp
        Type: String
        Override the callback function name in a jsonp request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url. So {jsonp:'onJSONPLoad'} would result in 'onJSONPLoad=?' passed to the server. As of jQuery 1.5, setting the jsonp option to falseprevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set the jsonpCallback setting. For example, { jsonp: false, jsonpCallback: "callbackName" }
      • jsonpCallback
        Type: String or Function()
        Specify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests.As of jQuery 1.5, you can also use a function for this setting, in which case the value of jsonpCallback is set to the return value of that function.
      • mimeType
        Type: String
        A mime type to override the XHR mime type. (version added: 1.5.1)
      • password
        Type: String
        A password to be used with XMLHttpRequest in response to an HTTP access authentication request.
      • processData (default: true)
        Type: Boolean
        By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to false.
      • scriptCharset
        Type: String
        Only applies when the "script" transport is used (e.g., cross-domain requests with "jsonp" or "script" dataType and "GET" type). Sets the charset attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script.
      • statusCode (default: {})

        An object of numeric HTTP codes and functions to be called when the response has the corresponding code. For example, the following will alert when the response status is a 404:

        1
        2
        3
        4
        5
        6
        7
        $.ajax({
        statusCode: {
        404: function() {
        alert( "page not found" );
        }
        }
        });

        If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirect), they take the same parameters as the errorcallback.

        (version added: 1.5)
      • success
        Type: FunctionPlainObject data, String textStatus, jqXHR jqXHR )
        A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the dataType parameter; a string describing the status; and the jqXHR (in jQuery 1.4.x, XMLHttpRequest) object. As of jQuery 1.5the success setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event.
      • timeout
        Type: Number
        Set a timeout (in milliseconds) for the request. This will override any global timeout set with$.ajaxSetup(). The timeout period starts at the point the $.ajax call is made; if several other requests are in progress and the browser has no connections available, it is possible for a request to time out before it can be sent. In jQuery 1.4.x and below, the XMLHttpRequest object will be in an invalid state if the request times out; accessing any object members may throw an exception. In Firefox 3.0+ only, script and JSONP requests cannot be cancelled by a timeout; the script will run even if it arrives after the timeout period.
      • traditional
        Type: Boolean
        Set this to true if you wish to use the traditional style of param serialization.
      • type (default: 'GET')
        Type: String
        The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.
      • url (default: The current page)
        Type: String
        A string containing the URL to which the request is sent.
      • username
        Type: String
        A username to be used with XMLHttpRequest in response to an HTTP access authentication request.
      • xhr (default: ActiveXObject when available (IE), the XMLHttpRequest otherwise)
        Type: Function()
        Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory.
      • xhrFields

        An object of fieldName-fieldValue pairs to set on the native XHR object. For example, you can use it to set withCredentials to true for cross-domain requests if needed.

        1
        2
        3
        4
        5
        6
        $.ajax({
        url: a_cross_domain_url,
        xhrFields: {
        withCredentials: true
        }
        });

        In jQuery 1.5, the withCredentials property was not propagated to the native XHR and thus CORS requests requiring it would ignore this flag. For this reason, we recommend using jQuery 1.5.1+ should you require the use of it.

        (version added: 1.5.1)

The $.ajax() function underlies all Ajax requests sent by jQuery. It is often unnecessary to directly call this function, as several higher-level alternatives like $.get() and .load() are available and are easier to use. If less common options are required, though, $.ajax() can be used more flexibly.

At its simplest, the $.ajax() function can be called with no arguments:

1
$.ajax();

Note: Default settings can be set globally by using the $.ajaxSetup() function.

This example, using no options, loads the contents of the current page, but does nothing with the result. To use the result, you can implement one of the callback functions.

The jqXHR Object

The jQuery XMLHttpRequest (jqXHR) object returned by $.ajax() as of jQuery 1.5 is a superset of the browser's native XMLHttpRequest object. For example, it contains responseText and responseXML properties, as well as a getResponseHeader() method. When the transport mechanism is something other than XMLHttpRequest (for example, a script tag for a JSONP request) the jqXHR object simulates native XHR functionality where possible.

As of jQuery 1.5.1, the jqXHR object also contains the overrideMimeType() method (it was available in jQuery 1.4.x, as well, but was temporarily removed in jQuery 1.5). The .overrideMimeType() method may be used in the beforeSend()callback function, for example, to modify the response content-type header:

1
2
3
4
5
6
7
8
9
10
11
$.ajax({
url: "http://fiddle.jshell.net/favicon.png",
beforeSend: function( xhr ) {
xhr.overrideMimeType( "text/plain; charset=x-user-defined" );
}
})
.done(function( data ) {
if ( console && console.log ) {
console.log( "Sample of data:", data.slice( 0, 100 ) );
}
});

The jqXHR objects returned by $.ajax() as of jQuery 1.5 implement the Promise interface, giving them all the properties, methods, and behavior of a Promise (see Deferred object for more information). These methods take one or more function arguments that are called when the $.ajax() request terminates. This allows you to assign multiple callbacks on a single request, and even to assign callbacks after the request may have completed. (If the request is already complete, the callback is fired immediately.) Available Promise methods of the jqXHR object include:

  • jqXHR.done(function( data, textStatus, jqXHR ) {});

    An alternative construct to the success callback option, the .done() method replaces the deprecated jqXHR.success() method. Refer to deferred.done() for implementation details.

  • jqXHR.fail(function( jqXHR, textStatus, errorThrown ) {});

    An alternative construct to the error callback option, the .fail() method replaces the deprecated .error()method. Refer to deferred.fail() for implementation details.

  • jqXHR.always(function( data|jqXHR, textStatus, jqXHR|errorThrown ) { });

    An alternative construct to the complete callback option, the .always() method replaces the deprecated .complete() method.

    In response to a successful request, the function's arguments are the same as those of .done(): data, textStatus, and the jqXHR object. For failed requests the arguments are the same as those of .fail(): the jqXHR object, textStatus, and errorThrown. Refer to deferred.always() for implementation details.

  • jqXHR.then(function( data, textStatus, jqXHR ) {}, function( jqXHR, textStatus, errorThrown ) {});

    Incorporates the functionality of the .done() and .fail() methods, allowing (as of jQuery 1.8) the underlying Promise to be manipulated. Refer to deferred.then() for implementation details.

Deprecation Notice: The jqXHR.success()jqXHR.error(), and jqXHR.complete() callbacks are deprecated as of jQuery 1.8. To prepare your code for their eventual removal, use jqXHR.done()jqXHR.fail(), and jqXHR.always() instead.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Assign handlers immediately after making the request,
// and remember the jqXHR object for this request
var jqxhr = $.ajax( "example.php" )
.done(function() {
alert( "success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "complete" );
});
// Perform other work here ...
// Set another completion function for the request above
jqxhr.always(function() {
alert( "second complete" );
});

The this reference within all callbacks is the object in the context option passed to $.ajax in the settings; if contextis not specified, this is a reference to the Ajax settings themselves.

For backward compatibility with XMLHttpRequest, a jqXHR object will expose the following properties and methods:

  • readyState
  • status
  • statusText
  • responseXML and/or responseText when the underlying request responded with xml and/or text, respectively
  • setRequestHeader(name, value) which departs from the standard by replacing the old value with the new one rather than concatenating the new value to the old one
  • getAllResponseHeaders()
  • getResponseHeader()
  • statusCode()
  • abort()

No onreadystatechange mechanism is provided, however, since donefailalways, and statusCode cover all conceivable requirements.

Callback Function Queues

The beforeSenderrordataFiltersuccess and complete options all accept callback functions that are invoked at the appropriate times.

As of jQuery 1.5, the fail and done, and, as of jQuery 1.6, always callback hooks are first-in, first-out managed queues, allowing for more than one callback for each hook. See Deferred object methods, which are implemented internally for these $.ajax() callback hooks.

The callback hooks provided by $.ajax() are as follows:

  1. beforeSend callback option is invoked; it receives the jqXHR object and the settings object as parameters.
  2. error callback option is invoked, if the request fails. It receives the jqXHR, a string indicating the error type, and an exception object if applicable. Some built-in errors will provide a string as the exception object: "abort", "timeout", "No Transport".
  3. dataFilter callback option is invoked immediately upon successful receipt of response data. It receives the returned data and the value of dataType, and must return the (possibly altered) data to pass on to success.
  4. success callback option is invoked, if the request succeeds. It receives the returned data, a string containing the success code, and the jqXHR object.
  5. Promise callbacks — .done().fail().always(), and .then() — are invoked, in the order they are registered.
  6. complete callback option fires, when the request finishes, whether in failure or success. It receives the jqXHRobject, as well as a string containing the success or error code.

Data Types

The $.ajax() function relies on the server to provide information about the retrieved data. If the server reports the return data as XML, the result can be traversed using normal XML methods or jQuery's selectors. If another type is detected, such as HTML in the example above, the data is treated as text.

Different data handling can be achieved by using the dataType option. Besides plain xml, the dataType can be htmljsonjsonpscript, or text.

The text and xml types return the data with no processing. The data is simply passed on to the success handler, either through the responseText or responseXML property of the jqXHR object, respectively.

Note: We must ensure that the MIME type reported by the web server matches our choice of dataType. In particular, XML must be declared by the server as text/xml or application/xml for consistent results.

If html is specified, any embedded JavaScript inside the retrieved data is executed before the HTML is returned as a string. Similarly, script will execute the JavaScript that is pulled back from the server, then return nothing.

The json type parses the fetched data file as a JavaScript object and returns the constructed object as the result data. To do so, it uses jQuery.parseJSON() when the browser supports it; otherwise it uses a Function constructor. Malformed JSON data will throw a parse error (see json.org for more information). JSON data is convenient for communicating structured data in a way that is concise and easy for JavaScript to parse. If the fetched data file exists on a remote server, specify the jsonp type instead.

The jsonp type appends a query string parameter of callback=? to the URL. The server should prepend the JSON data with the callback name to form a valid JSONP response. We can specify a parameter name other than callback with the jsonp option to $.ajax().

Note: JSONP is an extension of the JSON format, requiring some server-side code to detect and handle the query string parameter. More information about it can be found in the original post detailing its use.

When data is retrieved from remote servers (which is only possible using the script or jsonp data types), the errorcallbacks and global events will never be fired.

Sending Data to the Server

By default, Ajax requests are sent using the GET HTTP method. If the POST method is required, the method can be specified by setting a value for the type option. This option affects how the contents of the data option are sent to the server. POST data will always be transmitted to the server using UTF-8 charset, per the W3C XMLHTTPRequest standard.

The data option can contain either a query string of the form key1=value1&key2=value2, or an object of the form {key1: 'value1', key2: 'value2'}. If the latter form is used, the data is converted into a query string using jQuery.param()before it is sent. This processing can be circumvented by setting processData to false. The processing might be undesirable if you wish to send an XML object to the server; in this case, change the contentType option from application/x-www-form-urlencoded to a more appropriate MIME type.

Advanced Options

The global option prevents handlers registered using .ajaxSend().ajaxError(), and similar methods from firing when this request would trigger them. This can be useful to, for example, suppress a loading indicator that was implemented with .ajaxSend() if the requests are frequent and brief. With cross-domain script and JSONP requests, the global option is automatically set to false. See the descriptions of these methods below for more details. See the descriptions of these methods below for more details.

If the server performs HTTP authentication before providing a response, the user name and password pair can be sent via the username and password options.

Ajax requests are time-limited, so errors can be caught and handled to provide a better user experience. Request timeouts are usually either left at their default or set as a global default using $.ajaxSetup() rather than being overridden for specific requests with the timeout option.

By default, requests are always issued, but the browser may serve results out of its cache. To disallow use of the cached results, set cache to false. To cause the request to report failure if the asset has not been modified since the last request, set ifModified to true.

The scriptCharset allows the character set to be explicitly specified for requests that use a <script> tag (that is, a type of script or jsonp). This is useful if the script and host page have differing character sets.

The first letter in Ajax stands for "asynchronous," meaning that the operation occurs in parallel and the order of completion is not guaranteed. The async option to $.ajax() defaults to true, indicating that code execution can continue after the request is made. Setting this option to false (and thus making the call no longer asynchronous) is strongly discouraged, as it can cause the browser to become unresponsive.

The $.ajax() function returns the XMLHttpRequest object that it creates. Normally jQuery handles the creation of this object internally, but a custom function for manufacturing one can be specified using the xhr option. The returned object can generally be discarded, but does provide a lower-level interface for observing and manipulating the request. In particular, calling .abort() on the object will halt the request before it completes.

Extending Ajax

As of jQuery 1.5, jQuery's Ajax implementation includes prefilterstransports, and converters that allow you to extend Ajax with a great deal of flexibility.

Using Converters

$.ajax() converters support mapping data types to other data types. If, however, you want to map a custom data type to a known type (e.g json), you must add a correspondance between the response Content-Type and the actual data type using the contents option:

1
2
3
4
5
6
7
8
9
10
11
$.ajaxSetup({
contents: {
mycustomtype: /mycustomtype/
},
converters: {
"mycustomtype json": function( result ) {
// Do stuff
return newresult;
}
}
});

This extra object is necessary because the response Content-Types and data types never have a strict one-to-one correspondance (hence the regular expression).

To convert from a supported type (e.g textjson) to a custom data type and back again, use another pass-through converter:

1
2
3
4
5
6
7
8
9
10
11
12
$.ajaxSetup({
contents: {
mycustomtype: /mycustomtype/
},
converters: {
"text mycustomtype": true,
"mycustomtype json": function( result ) {
// Do stuff
return newresult;
}
}
});

The above now allows passing from text to mycustomtype and then mycustomtype to json.

Additional Notes:

  • Due to browser security restrictions, most "Ajax" requests are subject to the same origin policy; the request can not successfully retrieve data from a different domain, subdomain, port, or protocol.
  • Script and JSONP requests are not subject to the same origin policy restrictions.

Examples:

Example: Save some data to the server and notify the user once it's complete.

1
2
3
4
5
6
7
8
$.ajax({
type: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
})
.done(function( msg ) {
alert( "Data Saved: " + msg );
});

Example: Retrieve the latest version of an HTML page.

1
2
3
4
5
6
7
$.ajax({
url: "test.html",
cache: false
})
.done(function( html ) {
$( "#results" ).append( html );
});

Example: Send an xml document as data to the server. By setting the processData option to false, the automatic conversion of data to strings is prevented.

1
2
3
4
5
6
7
8
var xmlDocument = [create xml document];
var xmlRequest = $.ajax({
url: "page.php",
processData: false,
data: xmlDocument
});
xmlRequest.done( handleResponse );

Example: Send an id as data to the server, save some data to the server, and notify the user once it's complete. If the request fails, alert the user.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var menuId = $( "ul.nav" ).first().attr( "id" );
var request = $.ajax({
url: "script.php",
type: "POST",
data: { id : menuId },
dataType: "html"
});
request.done(function( msg ) {
$( "#log" ).html( msg );
});
request.fail(function( jqXHR, textStatus ) {
alert( "Request failed: " + textStatus );
});

Example: Load and execute a JavaScript file.

1
2
3
4
5
$.ajax({
type: "GET",
url: "test.js",
dataType: "script"
});


posted by 네코냥이 2014. 1. 7. 14:28

http://jqueryui.com/

http://jqueryui.com/sortable/


<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>


posted by 네코냥이 2013. 3. 18. 10:36

원문출처: http://shanedotcom.blog.me/70142923979



사이트 개발에 있어서 로그아웃 과정을 세션이나 기타 쿠키를 이용하지 않고 처리해야 할 때 어떤 방법을 사용하면 좋을까.

우선 가장 쉽게 생각할 수 있는 것은 로그아웃 버튼을 만들고 사용자가 그 버튼을 눌렀을 때 로그아웃 처리를 하는 방식이 있을 수 있겠다. 그런데 모든 사용자가 버튼을 눌러 로그아웃 한다고 장담할 수도 없을 뿐더러 기타 여러가지 이유로 인터넷 창이 닫혔을 때는 

서버에 로그아웃 했다는 기록이 남지 않게 된다. 서버는 여전히 로그인 상태로 인지하게 될 것이다.

 

사용자의 로그인 로그아웃 기록이 별로 중요하지 않거나 또는 중복 로그인 자체에 대한 별도의 제한을 주지 않을거라면

사실 로그아웃 처리는 그다지 큰 문제가 아닐지도 모른다. 그러나 쇼핑몰과 같이 사용자의 구매 정보에 대한 신뢰있는 저장 및 처리가

필요한 사이트라면 로그아웃 처리 자체 만으로도 사이트 개발 시에 대단히 신중하게 구현해야 할 부분이다.

 

여기서는 쇼핑몰과 같은 민감한 사이트는 아닐지라도 여러 이유로 인하여 로그아웃 처리를 순수하게 자바스크립트 만으로

처리해야 한다고 생각해 보자. 로그아웃 처리라고는 해도 실제로 구현해 보고자 하는 것은 사용자가 인터넷 창을 그냥 닫았을 경우

그 이벤트를 받아서 로그아웃 처리 함수로 보내는 정도면 충분할 것이다. 그러면 어떤 식으로 처리하면 좋을까.

 

그러기 위해서는 일단 자바스크립트에서 인터넷 창을 닫았을 때 감지할 수 있는 이벤트가 있는지 생각해 보자.

 

1. onbeforeunload

onbeforeunload 이벤트는 도큐먼트가 닫히기 전에 처리할 함수를 지정할 수 있다.

 

<script language="javascript">

function closePage(){

// 창이 닫혔을 때 처리할 함수

}

</script>

 

<BODY onbeforeunload="closePage()">

 

위와 같은 방식으로 창이 닫힐 때, 정확하게 말하면 페이지가 언로드 될 때 closePage() 라는 자바스크립트 함수가 실행된다.

 

 

 

2. 새로고침( reload )의 문제

안타깝게도 로그아웃 처리와 관련하여 onbeforeunload 이벤트를 적용하는데는 아주 큰 단점이 있다.

바로 새로고침의 문제이다. onbeforeunload에 대해서 정확하게 말했듯이 이는 페이지 닫힐 때의 이벤트가 아니라

페이지가 언로드 될 때 일어나는 이벤트 이다. 인터넷 창을 닫을 때 외에도 페이지가 언로드 되는 경우는 아주 많다.

쉽게 생각해 볼 수 있는 것은 새로고침의 경우. 새로고침은 페이지를 언로드 했다가 다시 로드 과정( reload )이기 때문에

언로드 될 때 바로 closePage() 함수가 수행되어 버리고, 이 부분을 로그아웃 처리로 이용한다면 사용자는 새로고침 만으로도

로그아웃 되어 버리는 불상사가 발생하게 된다.

 

새로고침과 페이지를 닫은 경우를 구별할 수 있는 팁이 있다면 좋겠지만 아직까지는 그에 대해 뚜렷한 해결책은 없다.

( 이벤트 좌표로 처리할 수도 있겠으나, 이 경우에도 완전하지 않다. 이에 대해서는 나중에 설명하겠다. )

 

그렇다면 현실적으로 할 수 있는 방법이란 결국 새로고침 이벤트를 막는 것 뿐이다.

새로고침 이벤트는 키보드의 F5 외에도 마우스오른쪽버튼을 눌렀을 때 나타나는 팝업 메뉴라든가 기타 Ctrl+R, Ctrl+L 등등을

모두 막아야 한다.

 

이와 관련해서는 다음과 같이 간단히 자바스크립트로 처리할 수 있다. 

( 키 코드 값과 관련해서는 검색해보기 바란다. ) 

 

<script language="javascript"> 

document.onkeydown = function() { 

// 새로고침 방지 ( Ctrl+R, Ctrl+N, F5 )
if ( event.ctrlKey == true && ( event.keyCode == 78 || event.keyCode == 82 ) || event.keyCode == 116) {

event.keyCode = 0;
event.cancelBubble = true;
event.returnValue = false;

}

 

// 윈도우 창이 닫힐 경우
if (event.keyCode == 505) { 
    alert(document.body.onBeforeUnload);
}

 </script>

 

3. 기타 문제

그렇다면 이제 모두 해결된 것일까?

 

안타깝게도 경우에 따라 여전히 문제가 되는 경우가 있다.

가장 먼저 떠오르는 것은 

 

1) 사용자가 새로고침을 하지 않았는데로 새로고침 현상이 일어나는 경우

2) 사용자가 Alt+F4 를 눌러 강제로 창을 닫는 경우 

 

2) 의 경우에는 2. 새로고침의 문제와 마찬가지로 F4 에 대한 키 이벤트를 방지하는 것이다.

 

<script language="javascript">  

// 창 닫기( Alt+F4 ) 방지 
if ( event.keyCode == 115) { // F4 눌렀을 시
   // 로그아웃 처리
}

</script>

 

1) 의 경우는 어떤 경우에 일어날까?

 

사용자가 페이지에서 특정 메뉴를 클릭했는데 그 메뉴가 자바스크립트 상에서 페이지가 리로드를 일으킨다거나

또는 ActiveX 등에서 제공한 자바스크립트 메소드가 페이지 리로드를 수반하는 경우 등이다.

 

그걸 인터넷 창을 닫는 이벤트와 구별하는 방법은 이벤트 발생 좌표를 이용하는 방법이 있다.

 

즉, 사용자가 페이지 내의 어떤 메뉴를 수행한다는 것은 클릭했을 시점의 마우스 이벤트가 페이지 영역 내 일 것이므로

X, Y 좌표가 모두 + 값을 갖는다.

 

1. 에서 지정했던 BODY 부분을 보면

<BODY onbeforeunload="closePage()"> 

을 볼 수 있는데 여기에서 closePage( event ) 라고 하면 이벤트 좌표를 변수로 closePage 함수에 넘길 수 있다. 

  

이벤트 좌표는 ( event.X, event.Y ) 와 같이 받을 수 있는데 페이지 영역의 좌측 상단 끝을 기점으로

오른쪽으로 갈 수록 event.X 값이 커지며, 아래로 내려 갈 수록 event.Y 값이 커진다.

 

그렇다면 페이지 영역 밖이라면? 쉽게 말해 인터넷 창 오른쪽 상단 끝에 있는 X 버튼이라면 어떤 좌표 값을 가질까?

 

우선 event.X 값은 사용자의 모니터 해상도 가로값에 따라 다르며, 또한 인터넷 창을 작게 축소했느냐 전체화면이냐에 따라서도 다르다. 그러나 페이지 영역 내이든 외에든 어떤 경우에도 event.X 값은 항상 + 값을 갖게 된다.

 

그러나 event.Y 값은 사용자의 모니터의 해상도나 인터넷 창의 크기와도 상관없이 모두 - 값을 갖게 된다.

페이지 영역 밖의 인터넷 창이라면 event.Y 값은 - 를 갖게 되므로 이것으로 사용자가 인터넷 창을 닫았다고 인식하면 된다.

 

그 구현은 다음과 같다.

 

<script language="javascript">

// 윈도우 창을 닫을 때 로그아웃 처리

function closePage( event ){
     if( event.clientY < 0 ){
     // 로그아웃 처리
     }

}

</script>

 

<BODY onbeforeunload="closeIt(event)">

 

 

 

 

 

이로서 제한적이나마 사용자가 인터넷 창을 닫았을 경우에 감지해서 특정 기능( 로그아웃 처리 같은 )을 부여할 수 있다. 

 

전체적인 소스 코드는 아래와 같다.  

 

 

 

 

 

 

 

--- 소스코드 --- 

// 자바스크립트를 이용한 로그아웃 처리 ( 인터넷 창을 닫았을 경우 ) 

<script language="javascript">
// 윈도우 창을 닫을 때 로그아웃 처리
   function closePage( event ){
      if( event.clientY < 0 ){
         // 로그아웃 처리
      }

   }

 
   document.onkeydown = function() {
       // 새로고침 방지 ( Ctrl+R, Ctrl+N, F5 )
       if ( event.ctrlKey == true && ( event.keyCode == 78 || event.keyCode == 82 ) || event.keyCode == 116) {
            event.keyCode = 0;
            event.cancelBubble = true;
            event.returnValue = false;
       }

 

       // 창 닫기( Alt+F4 ) 방지 
       if ( event.keyCode == 115) { // F4 눌렀을 시
         // 로그아웃 처리

       }

 

       // 윈도우 창이 닫힐 경우
       if (event.keyCode == 505) { 
           alert(document.body.onBeforeUnload);
      }
}
</script>

 

 

<BODY onbeforeunload="closePage(event)" oncontextmenu="return false">

// oncontextmenu="return false" : 마우스 오른쪽 버튼 막기 ( 팝업메뉴 보기 방지 )





----------------------------------------------------------------------------------

----------------------------------------------------------------------------------


[동적할당]


window.onbeforeunload = 함수명 ;


window.onbeforeunload = function() {


// 내용기술

}

posted by 네코냥이 2013. 3. 14. 09:36



비활성화 레이어 만들기


# 활성화창 이미지


백그라운 컬러 혹은

백그라운 이미지


# 브라우저 크기


window.screen.availWidth

window.screen.availHeight

(브라우저가 아닌 실제 윈도우의 창크기를 구할때 사용합니다.)


# CSS속성 opacity값 조정 + 애니메이션 효과


* 애니메효과를 지닌 함수들 [JQuery]


fadeTo : 지정 투명도로 변해감.    ex) fadeTo(속도, 투명도) // fadeTo(속도, 투명도, 콜백함수) 


fadeOut  :  밝음 상태 -> 어두워짐    ex) fadeOut(속도, 콜백 함수)  [비표기. 사라짐]


fadeIn : 어두움 상태 -> 밝아짐     ex) fadeIn('slow', 콜백 함수)    [표기, 나타남]


# CSS


background-color

position

top, left

width, height

posted by 네코냥이 2013. 2. 3. 14:45

---------------------------------------------------------------------------------

# 스크립트 부분


<script type="text/javascript">

function Commend( where ) {

var object = $(where);  // 받은 인자를 바로 $안에 감싸면, JQuery 객체가 되어버린다.

var upper_Tag = where.parent();  //이벤트가 일어난 부분의 부모태그

var Title = upper_Tag.parent().find("[name=Title]").val();    

// 한번 더 상위 태그로 올라가, name 속성의 값이 Title인 객체를 찾음. 그 객체의 값

}

</script>

---------------------------------------------------------------------------------

# HTML 부분

<tr>

<td>

<span name="Title"> TITLE </span>

</td>

<td>

<span onclick=" Commend(this) ">Content</span>

</td>

</tr>

---------------------------------------------------------------------------------

HTML 구조에 의존적이긴 하지만, attr("id") 등의 메소드를 이용해준다면,

그 이벤트의 발생위치를 판단할 수 있고, 그에 따른 명령을 따로 처리해 줄 수 있다.


posted by 네코냥이 2013. 1. 24. 13:44

출처: http://blog.naver.com/papaya5rhw/30156672046

# 키 이벤트

'keydown'

'keypress'

'keyup'



# JQuery에서 사용법


$('#id').keydown(function(e){


$('#id').val(''); //키다운시 공백처리

var key = e.keyCode; //키값


});


# 일반 태그에 이벤트 주기

<INPUT TYPE="text" NAME="asdf" onKeyDown="keyEvent()">


function keyEvent(){


var a = event.keyCode


alert(a);


}


# 일반 태그에 이벤트 주기_응용편

<INPUT TYPE="text" NAME="asdf" onKeyDown="javascript:if(event.keyCode=='13')keyEvent();return  false;">


posted by 네코냥이 2013. 1. 23. 13:46

# 함수원형

function setCookie( cookieName, cookieValue, expireDate )

 {

  var today = new Date();

  today.setDate( today.getDate() + parseInt( expireDate ) );

  document.cookie = cookieName + "=" + escape( cookieValue ) + "; path=/; expires=" + today.toGMTString() + ";";  // path 옵션을 주지 않으면, 쿠키가 저장되는 위치가 독립적이다.

 }



# 사용법

var date = new Date();

date.setDate(date.getDate() + 1);

setCookie("Alert_AutoSetting","1", date) ;