Woocommerce代币的实际目的是什么?
有一种默认的woo商务信用卡形式,但是如果启用了令牌化,则该表单的发布将被禁用。下面的代码来自woocommerce核心,此处禁用发布。那么这是否意味着使用令牌将信用卡详细信息以某种安全的方法存储在网站上并在需要时进行检索?
/**
* Output field name HTML
*
* Gateways which support tokenization do not require names - we don't want the data to post to the server.
*
* @since 2.6.0
* @param string $name Field name.
* @return string
*/
public function field_name( $name ) {
return $this->supports( 'tokenization' ) ? '' : ' name="' . esc_attr( $this->id . '-' . $name ) . '" ';
}
如果信用卡表单没有名称(HTML),我该如何保存或发布?对我来说真的没有任何意义,请帮忙