/**
 * 该模块是数据压缩解压相关<br>
 *  <strong>
 *          页面需要导入的文件
 *          <ul>
 *              <li>cmp-compressData.js</li>
 *          </ul>
 *      </strong>
 * @module CompressData
 * @subtitle 数据压缩解压
 */

/**
 * 数据压缩<br>
 *     <span style="color:red">! 只支持在cmp壳里面</span>
 * @class compressData
 * @namespace cmp
 * @type {{}}
 */

/**
 * 数据压缩
 * @namespace cmp.compressData
 * @method compress
 * @param {Object} options 配置参数
 *      @param {String} options.data 待压缩的数据
 *      @param {Function} options.success 压缩成功后的回调
 *      @param {Function} options.error 压缩失败后的回调
 * @example
 * ```
 * <script>
 *    cmp.compressData.compress({
 *         data:"{&quot UserName &quot:&quot LiYang &quot,&quot Password &quot:&quot 123 &quot,&quot errorCode &quot:&quot0&quot}"
 *        success:function(result){
 *             //do something with result
 *        },
 *        error:function(error){
 *        }
 *    });
 * </script>
 * ```
 *
 */

/**
 * 数据解压
 * @namespace cmp.compressData
 * @method decompress
 * @param {Object} options 配置参数
 *      @param {String} options.data 待解压的数据
 *      @param {Function} options.success 解压成功后的回调
 *      @param {Function} options.error 解压失败后的回调
 * @example
 * ```
 * <script>
 *    cmp.compressData.decompress({
 *         data:""
 *        success:function(result){
 *             //do something with result
 *        },
 *        error:function(error){
 *        }
 *    });
 * </script>
 * ```
 */
    
Top