- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 xDebug 运行一些代码,并且不断注意到 _underscoreCache 作为 k v 对的数组:
object
collection
is_default
default_group_id
front
store_id
action
session_hosts
controller_action
request
secure
visitor_data
website
quote
items_collection
parent_item_id
quote_id
item_id
product_id
code
attributes
website_id
attribute_set_id
additional_attribute_table
attribute_codes
is_global
skip_confirmation_if_email
confirmation
visibility
is_salable
stock_item
udropship_vendor
custom_vars_combined
password_enc
vendor_name
use_local_stock
is_recurring
customer_group_id
date
product_collection
product_name
product_type_id
product_status_changed
is_changed_websites
product_changed_websites
license_key
license_key
license_status
license_expire
server_restriction
products
module_name
use_config_manage_stock
is_in_stock
stock_status
product_type
sku
name
weight
tax_class_id
cost
base_cost
is_qty_decimal
quote_item
product
message
item
is_super_mode
qty_to_add
is_child_item
has_error
item_is_qty_decimal
has_qty_option_update
item_qty
orig_qty
use_config_min_sale_qty
use_config_max_sale_qty
suppress_check_qty_increments
use_config_enable_qty_increments
use_config_min_qty
item_use_old_qty
item_backorders
ignore_old_qty
use_old_qty
skip_check_required_option
ud_skip_quote_load_after_event
order
has_children
vendor_sku
address_type
address
postcode
limit_zipcode
country_id
allowed_countries
stockcheck_method
true_stock
udropship_stock_levels
stock_result
quote_currency_code
currency_code
customer_id
prefix
customer_prefix
firstname
customer_firstname
middlename
customer_middlename
lastname
customer_lastname
suffix
customer_suffix
email
customer_email
dob
customer_dob
taxvat
customer_taxvat
gender
customer_gender
customer_tax_class_id
remote_ip
x_forwarded_for
items_count
checkout_method
checkout_state
collect_shipping_rates
totals_collected_flag
extra_tax_amount
base_extra_tax_amount
subtotal
base_subtotal
subtotal_with_discount
base_subtotal_with_discount
grand_total
base_grand_total
quote_address
is_multi_shipping
total_qty
base_virtual_amount
virtual_amount
subtotal_incl_tax
base_subtotal_incl_tax
applied_rule_ids
shipping_tax_amount
base_shipping_tax_amount
applied_taxes_reset
free_shipping
free_method_weight
region_id
customer_class_id
store
parent_id
product_class_id
shipping_amount
base_shipping_amount
shipping_incl_tax
base_shipping_incl_tax
shipping_taxable
base_shipping_taxable
is_shipping_incl_tax
base_cod_fee
cod_fee
cod_tax_amount
base_cod_tax_amount
method
prev_quote_customer_group_id
discount_amount
base_discount_amount
base_calculation_price
calculation_price
base_original_price
original_custom_price
rate
row_total
base_row_total
coupon_code
no_discount
coupon_type
uses_per_customer
is_primary
uses_per_coupon
use_auto_generation
usage_limit
operator_option
operator_by_input_type
value_option
operator_options
type
aggregator
value
actions
aggregator_option
aggregator_options
rule
conditions_serialized
attribute_option
attribute
operator
is_value_parsed
value_parsed
actions_serialized
simple_free_shipping
stop_rules_processing
tax_percent
custom_price
base_price
price_incl_tax
base_price_incl_tax
row_total_incl_tax
base_row_total_incl_tax
taxable_amount
base_taxable_amount
is_price_incl_tax
rounding_deltas
weee_tax_applied
base_weee_tax_disposition
weee_tax_disposition
base_weee_tax_row_disposition
weee_tax_row_disposition
base_weee_tax_applied_amount
base_weee_tax_applied_row_amount
weee_tax_applied_amount
weee_tax_applied_row_amount
row_weight
all_items
dest_country_id
dest_region_id
dest_region_code
dest_street
city
dest_city
dest_postcode
package_value
package_value_with_discount
package_weight
package_qty
package_physical_value
base_currency
package_currency
limit_carrier
orig
path
cipher
mode
handler
init_vector
active_flag
error
weight_type
full_row_weight
carrier_code
zip
ups_pickup
ups_container
ups_dest_type
udropship_calculate_rates
calculate_rates_by_group_flag
requests
website_ids
system_methods
最佳答案
简短版本:如果您不知道这是做什么的,则不需要使用它。
长版如下。
这与 underscoe.js 完全没有关系。在它成为 javascript 框架之前,下划线是一个简单的 ASCII 字符 _
。
在 Magento 的系统中,大多数对象都是从基类继承的
Varien_Object
$object = new SomeObject; //which inherits form Varien_Object
$object->setSomeValue('Our Value');
echo $object->getSomeValue('Our Value');
echo $object->getData('our_value');
$data = $object->getData();
echo $data['our_value'];
setSomeValue
的具体方法。 Magento 神奇地知道我们只想设置一个数据属性。这是在 PHP 魔术方法
__call
中实现的
#File: lib/Varien/Object.php
public function __call($method, $args)
{
...
}
setSomeValue
时,Magento 会在名为
some_value
的对象数据数组上设置一个键。也就是说,它需要将驼峰式
SomeValue
转换为非驼峰式
some_value
。你可以在这里看到神奇的
__call
实现
#File: lib/Varien/Object.php
public function __call($method, $args)
{
case 'set' :
//Varien_Profiler::start('SETTER: '.get_class($this).'::'.$method);
$key = $this->_underscore(substr($method,3));
$result = $this->setData($key, isset($args[0]) ? $args[0] : null);
//Varien_Profiler::stop('SETTER: '.get_class($this).'::'.$method);
return $result;
}
_underscore
方法采用字符串
SomeValue
,并使用以下行将其转换为
some_value
#File: lib/Varien/Object.php
$result = strtolower(preg_replace('/(.)([A-Z])/', "$1_$2", $name));
strToLower
和
preg_replace
意味着性能瓶颈。为了解决这个问题,他们引入了 _underscoeCache
。这是一个数组,也是 Varien_Object
类上的一个静态属性#File: lib/Varien/Object.php
/**
* Setter/Getter underscore transformation cache
*
* @var array
*/
protected static $_underscoreCache = array();
_underscore
方法,你可以看到它是如何使用的protected function _underscore($name)
{
if (isset(self::$_underscoreCache[$name])) {
return self::$_underscoreCache[$name];
}
#Varien_Profiler::start('underscore');
$result = strtolower(preg_replace('/(.)([A-Z])/', "$1_$2", $name));
#Varien_Profiler::stop('underscore');
self::$_underscoreCache[$name] = $result;
return $result;
}
strToLower
和 preg_replace
转换,但它只会对每个唯一字符串执行一次。完成后,键/值( SomeValue
和 some_value
)被放置在 _underscoreCache
中self::$_underscoreCache[$name] = $result;
if (isset(self::$_underscoreCache[$name])) {
return self::$_underscoreCache[$name];
}
strToLower
和 preg_replace
调用。
关于magento - 什么是 Magento 中的 _underscoreCache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18453691/
Magento 主题和 Magento 皮肤有什么区别?它们和 Magento 模块之间有什么关系? 最佳答案 主题是创建视觉体验的布局、模板、区域设置和/或外观文件的任意组合... 主题由以下任意或
我想在 Magento 之外获得购物车 Block。这是我的代码。 getLocale()->getLocaleCode(); //Solution Mage::getSingleto
我是 Magento 新手,使用 CE 1.7.0.2 开发了一个网站。现在可以上线了,但我遇到了页面加载缓慢的问题。 我的网站产品主页、列表和详细信息页面最初需要 10-13 秒的时间来加载页面,但
我在 magento 网站上工作。我有 4 个类别,其中两个使用其他主题(不是我的特定 magento 主题)。我如何配置我的主题以从我的默认主题而不是基本主题中获取丢失的文件。 谢谢 最佳答案 通常
我遇到了我的 magento 项目的要求,因此我需要为特定客户群的购买提供特别折扣。此折扣必须显示在客户帐户中,如果他们属于该特定组,并且当用户要使用该特定折扣时,必须根据该折扣优惠对该商品的价格进行
我在 Magento 主题开发中找到的大量教程建议从使用空白作为制作您自己的自定义主题的指南开始。很多这些文章已经很旧了,截至当前版本(1.7),情况仍然如此吗? 附言- 除了 Magento 的 o
似乎这应该是一个可以找到的问题,但我找不到它。 magento 数据库中存储的类别 NAME 在哪里?我可以看到 catalog_category_entity有 key ID,然后还有其他 EAV
我知道 magento 会根据需要调整原始产品图像的大小并以不同的大小对其进行多次缓存。 这些 chached 图像存储在哪里(路径)? 当您从缓存管理中刷新图像缓存时,它们会被删除吗? 如果我要手动
我在我的 magento 网上商店中使用这个扩展 http://www.manadev.com/seo-layered-navigation-plus (分层导航) 此扩展适用于简单的产品。 但就我而
我在 Magento 的一家商店下拥有某些产品的批发属性。我想设置它,以便这些特定属性仅出现在产品页面上,如果客户已登录并且他们在批发客户组中。 这可能吗? 最佳答案 像这样的事情应该可以工作,尽管我
和有什么区别和 在 Magento 中? 我将创建一个新模块,我必须决定在这两个事件中的哪一个事件中挂起我的观察者。 最佳答案 类别(和所有其他对象)保存在事务中。事件catalog_categor
好吧,这是一个似乎很容易解决的问题,但它让我望而却步...... 我的 Magento Web 上有一些类别,每个类别都有一些产品。我希望它们显示为 4 列计数,但它始终显示为 3 列计数,如下所示:
我已经在我的网站上添加了一些成员(member)跟踪代码。为了使跟踪工作正常进行,我需要向关联公司提供确认付款的网址。 我正在使用Magento,我不确定该版本,但几年内未对其进行更新。我需要知道订单
我们的网站遇到了问题。 系统 > 配置屏幕仅显示菜单、侧面菜单和页脚。当我们点击侧边菜单选项时,屏幕仍然黑屏,相关信息也没有出现。请看 this link .这就是出现的情况。当我们点击任何侧面菜单选
我想只使用一个 csv 文件来翻译前端 Magento 商店。所以我这样做了: 我创建了一个名为 Translator 的自定义模块。在其 config.xml 中,我放置了以下几行: ....
我添加了自定义订单状态选项。 有谁知道我如何通过API将其设置为自定义值? 最佳答案 感谢Diglin为我指出的正确位置。只是为了正确地给出答案: 您可以使用addComment方法来执行此操作,该方
目前,Magento 处理大规模操作的方式存在问题。无论分页如何,它都会返回一些 JS,其中包含当前集合和过滤器的每个 db id。这是为了支持网格标题中的“全选”与“全选可见”选项。当您的记录数量较
如何收集具有此角色的所有角色(系统->权限->角色)和用户? 谢谢。 最佳答案 获得所有角色 $roles = Mage::getModel('admin/roles')->getCol
如果能在我网站的各种应用程序之间进行通用登录,那将是一种巨大的用户体验。现在,我有一个 Magento 店面和一个 IPS 板社区。我正在尝试将它们集成到我的用户的一个通用登录中。 IPS 板提供多种
我正在为 Magento 社区 1.4.2 版中的时尚客户开发一个网站,作为该项目的一部分,我需要一些定制的主页促销块来展示特定产品或产品类别。为此,我想我会编写自己的小部件,并且除了如何处理图像外,
我是一名优秀的程序员,十分优秀!