如何将b64图像支持添加到默认白名单?
像这样添加b64图像支持:
//inside the Main activity
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Intent has different id here, e.g. @5850
Intent i = getIntent();
// intent.getSerializableExtra("someClass") returns null
//...
}
有效,但它也会重置整个默认白名单。
所以,我的问题是:有没有办法将$config->set('URI.AllowedSchemes', array('data' => true));
添加到默认白名单?以某种方式使用'URI.AllowedSchemes', array('data' => true)
?